gnu: ghc-haddock: Update to 2.17.4.
* gnu/packages/haskell.scm (ghc-haddock): Update to 2.17.4. [native-inputs]: Add ghc-hspec and ghc-haddock-test.
This commit is contained in:
parent
35182fa2b4
commit
613845d040
|
@ -719,7 +719,7 @@ documentation-generation tool for Haskell libraries.")
|
||||||
(define-public ghc-haddock
|
(define-public ghc-haddock
|
||||||
(package
|
(package
|
||||||
(name "ghc-haddock")
|
(name "ghc-haddock")
|
||||||
(version "2.16.1")
|
(version "2.17.4")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -729,12 +729,16 @@ documentation-generation tool for Haskell libraries.")
|
||||||
".tar.gz"))
|
".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1mnnvc5jqp6n6rj7xw8wdm0z2xp9fndkz11c8p3vbljsrcqd3v26"))))
|
"1z3h3v7w84dzsm47iavdppc2w899mr4c1agq9fzghgz902i0a655"))))
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
(arguments `(#:tests? #f)) ; FIXME: Tests break with GHC 7.10.2, fixed
|
;; FIXME: Tests fail with this error:
|
||||||
; upstream. See
|
;; driver-test/Main.hs:4:1: error:
|
||||||
; <https://github.com/haskell/haddock/issues/427>
|
;; Failed to load interface for ‘ResponseFileSpec’
|
||||||
|
(arguments `(#:tests? #f))
|
||||||
(inputs `(("ghc-haddock-api" ,ghc-haddock-api)))
|
(inputs `(("ghc-haddock-api" ,ghc-haddock-api)))
|
||||||
|
(native-inputs
|
||||||
|
`(("ghc-hspec" ,ghc-hspec)
|
||||||
|
("ghc-haddock-test" ,ghc-haddock-test)))
|
||||||
(home-page "http://www.haskell.org/haddock/")
|
(home-page "http://www.haskell.org/haddock/")
|
||||||
(synopsis
|
(synopsis
|
||||||
"Documentation-generation tool for Haskell libraries")
|
"Documentation-generation tool for Haskell libraries")
|
||||||
|
|
Loading…
Reference in New Issue