gnu: ghc-zlib: Enable tests.
* gnu/packages/haskell.scm (ghc-zlib)[arguments]: Enable tests. Allow building with newer tasty. [native-inputs]: Add ghc-quickcheck, ghc-tasty, ghc-tasty-hunit and ghc-tasty-quickcheck.master
parent
6300ba5b66
commit
906a396bff
gnu/packages
|
@ -2078,9 +2078,13 @@ literals.")
|
||||||
(base32
|
(base32
|
||||||
"1vbzf0awb6zb456xf48za1kl22018646cfzq4frvxgb9ay97vk0d"))))
|
"1vbzf0awb6zb456xf48za1kl22018646cfzq4frvxgb9ay97vk0d"))))
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
;; Tests require older versions of testy.
|
(arguments `(#:configure-flags (list "--allow-newer=tasty")))
|
||||||
(arguments `(#:tests? #f))
|
|
||||||
(inputs `(("zlib" ,zlib)))
|
(inputs `(("zlib" ,zlib)))
|
||||||
|
(native-inputs
|
||||||
|
`(("ghc-quickcheck" ,ghc-quickcheck)
|
||||||
|
("ghc-tasty" ,ghc-tasty)
|
||||||
|
("ghc-tasty-hunit" ,ghc-tasty-hunit)
|
||||||
|
("ghc-tasty-quickcheck" ,ghc-tasty-quickcheck)))
|
||||||
(home-page "https://hackage.haskell.org/package/zlib")
|
(home-page "https://hackage.haskell.org/package/zlib")
|
||||||
(synopsis
|
(synopsis
|
||||||
"Compression and decompression in the gzip and zlib formats")
|
"Compression and decompression in the gzip and zlib formats")
|
||||||
|
|
Reference in New Issue