gnu: ghc-blaze-markup: Update to 0.8.2.0.
* gnu/packages/haskell.scm (ghc-blaze-markup): Update to 0.8.2.0. [arguments]: Enable tests. [native-inputs]: Add ghc-hunit, ghc-quickcheck, ghc-tasty, ghc-tasty-hunit, and ghc-tasty-quickcheck.
This commit is contained in:
parent
14e9a39717
commit
969d0c6454
|
@ -3821,22 +3821,26 @@ interoperate with code that uses the new implementation.")
|
||||||
(define-public ghc-blaze-markup
|
(define-public ghc-blaze-markup
|
||||||
(package
|
(package
|
||||||
(name "ghc-blaze-markup")
|
(name "ghc-blaze-markup")
|
||||||
(version "0.7.0.3")
|
(version "0.8.2.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append "https://hackage.haskell.org/package/"
|
||||||
"https://hackage.haskell.org/package/blaze-markup/blaze-markup-"
|
"blaze-markup/blaze-markup-"
|
||||||
version
|
version ".tar.gz"))
|
||||||
".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"080vlhd8dwjxrma4bb524lh8gxs5lm3xh122icy6lnnyipla0s9y"))))
|
"0m3h3ryxj5r74mv5g5dnfq5jbbwmvkl7ray18vi20d5vd93sydj4"))))
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
(arguments `(#:tests? #f)) ; FIXME: testing libraries are missing.
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("ghc-blaze-builder" ,ghc-blaze-builder)
|
`(("ghc-blaze-builder" ,ghc-blaze-builder)
|
||||||
("ghc-text" ,ghc-text)))
|
("ghc-text" ,ghc-text)))
|
||||||
|
(native-inputs
|
||||||
|
`(("ghc-hunit" ,ghc-hunit)
|
||||||
|
("ghc-quickcheck" ,ghc-quickcheck)
|
||||||
|
("ghc-tasty" ,ghc-tasty)
|
||||||
|
("ghc-tasty-hunit" ,ghc-tasty-hunit)
|
||||||
|
("ghc-tasty-quickcheck" ,ghc-tasty-quickcheck)))
|
||||||
(home-page "http://jaspervdj.be/blaze")
|
(home-page "http://jaspervdj.be/blaze")
|
||||||
(synopsis "Fast markup combinator library for Haskell")
|
(synopsis "Fast markup combinator library for Haskell")
|
||||||
(description "This library provides core modules of a markup combinator
|
(description "This library provides core modules of a markup combinator
|
||||||
|
|
Loading…
Reference in New Issue