gnu: ghc-quickcheck-instances: Update to 0.3.16.1.

* gnu/packages/haskell-check.scm (ghc-quickcheck-instances): Update to
0.3.16.1.
[inputs]: Add ghc-base-compat, ghc-tagged, ghc-transformers-compat,
ghc-uuid-types, and ghc-case-insensitive.
This commit is contained in:
Ricardo Wurmus 2018-02-12 20:40:42 +01:00
parent b1c5c8de92
commit 04a699919a
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 13 additions and 9 deletions

View File

@ -314,7 +314,7 @@ been added since previous test run.")
(define-public ghc-quickcheck-instances (define-public ghc-quickcheck-instances
(package (package
(name "ghc-quickcheck-instances") (name "ghc-quickcheck-instances")
(version "0.3.12") (version "0.3.16.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
@ -324,18 +324,22 @@ been added since previous test run.")
version ".tar.gz")) version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"1wwvkzpams7i0j7nk5qj8vvhj8x5zcbgbgrpczszgvshva4bkmfx")))) "01v5bs7r9yvhkvb4yc9bqnacy8r6cy2gr9lnmwx40n5apgi0gcbz"))))
(build-system haskell-build-system) (build-system haskell-build-system)
(inputs (inputs
`(("ghc-old-time" ,ghc-old-time) `(("ghc-quickcheck" ,ghc-quickcheck)
("ghc-unordered-containers" ,ghc-unordered-containers) ("ghc-base-compat" ,ghc-base-compat)
("ghc-case-insensitive" ,ghc-case-insensitive)
("ghc-hashable" ,ghc-hashable) ("ghc-hashable" ,ghc-hashable)
("ghc-quickcheck" ,ghc-quickcheck) ("ghc-old-time" ,ghc-old-time)
("ghc-scientific" ,ghc-scientific) ("ghc-scientific" ,ghc-scientific)
("ghc-vector" ,ghc-vector) ("ghc-tagged" ,ghc-tagged)
("ghc-text" ,ghc-text))) ("ghc-text" ,ghc-text)
(home-page ("ghc-transformers-compat" ,ghc-transformers-compat)
"https://github.com/aslatter/qc-instances") ("ghc-unordered-containers" ,ghc-unordered-containers)
("ghc-uuid-types" ,ghc-uuid-types)
("ghc-vector" ,ghc-vector)))
(home-page "https://github.com/aslatter/qc-instances")
(synopsis "Common quickcheck instances") (synopsis "Common quickcheck instances")
(description "This package provides QuickCheck instances for types (description "This package provides QuickCheck instances for types
provided by the Haskell Platform.") provided by the Haskell Platform.")