gnu: ghc-quickcheck: Update to 2.13.2.

* gnu/packages/haskell-check.scm (ghc-quickcheck): Update to 2.13.2.
[inputs]: Add 'ghc-splitmix-bootstrap'.
This commit is contained in:
Timothy Sample 2019-10-31 09:52:05 -04:00
parent 6cf0daa4c0
commit 178f69cb41
No known key found for this signature in database
GPG key ID: 2AC6A5EC1C357C59

View file

@ -397,7 +397,7 @@ use HUnit assertions as QuickCheck properties.")
(define-public ghc-quickcheck (define-public ghc-quickcheck
(package (package
(name "ghc-quickcheck") (name "ghc-quickcheck")
(version "2.11.3") (version "2.13.2")
(outputs '("out" "doc")) (outputs '("out" "doc"))
(source (source
(origin (origin
@ -408,12 +408,13 @@ use HUnit assertions as QuickCheck properties.")
".tar.gz")) ".tar.gz"))
(sha256 (sha256
(base32 (base32
"0xhqk35fkzlbjcqbabg6962jkv8d688nzmz7ng4bm84x2d95d328")))) "0426j43af8v3qmdjjqxivazsvr3a2brac8yw09vpgpjkb2m0nmkv"))))
(build-system haskell-build-system) (build-system haskell-build-system)
(arguments (arguments
`(#:tests? #f)) ; FIXME: currently missing libraries used for tests. `(#:tests? #f)) ; FIXME: currently missing libraries used for tests.
(inputs (inputs
`(("ghc-random" ,ghc-random) `(("ghc-random" ,ghc-random)
("ghc-splitmix" ,ghc-splitmix-bootstrap)
("ghc-tf-random" ,ghc-tf-random))) ("ghc-tf-random" ,ghc-tf-random)))
(home-page "https://github.com/nick8325/quickcheck") (home-page "https://github.com/nick8325/quickcheck")
(synopsis "Automatic testing of Haskell programs") (synopsis "Automatic testing of Haskell programs")