gnu: ghc-haddock-api: Update to 2.19.0.1.

* gnu/packages/haskell.scm (ghc-haddock-api): Update to 2.19.0.1.
[arguments]: Add a phase that patches the Cabal file to allow newer
versions of Cabal and hspec.
master
Timothy Sample 2018-08-29 00:25:11 -04:00 committed by Ricardo Wurmus
parent 1689d39cd2
commit f548cd7254
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 12 additions and 3 deletions

View File

@ -989,8 +989,7 @@ the haddock package.")
(define-public ghc-haddock-api (define-public ghc-haddock-api
(package (package
(name "ghc-haddock-api") (name "ghc-haddock-api")
;; This is the last version to be supported by Cabal < 2.0 (version "2.19.0.1")
(version "2.17.4")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
@ -1000,8 +999,18 @@ the haddock package.")
".tar.gz")) ".tar.gz"))
(sha256 (sha256
(base32 (base32
"00fn6pzgg8xjbaw12d76jdqh2dbc5xy7miyz0x6kidvvar7i35ss")))) "0c6i7sljp7myz25d90gyw68a90i5jcrkajkxcciikp2hjirfaas3"))))
(build-system haskell-build-system) (build-system haskell-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-before 'configure 'update-constraints
(lambda _
(substitute* "haddock-api.cabal"
(("Cabal \\^>= 2\\.0\\.0")
"Cabal ^>= 2.2.0")
(("hspec \\^>= 2\\.4\\.4")
"hspec >= 2.4.4 && < 2.6")))))))
(inputs (inputs
`(("ghc-paths" ,ghc-paths) `(("ghc-paths" ,ghc-paths)
("ghc-haddock-library" ,ghc-haddock-library))) ("ghc-haddock-library" ,ghc-haddock-library)))