gnu: Add ghc-chell-quickcheck-bootstrap.
* gnu/packages/haskell.scm (ghc-chell-quickcheck-bootstrap): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>master
parent
8ea94489fd
commit
475d366866
|
@ -7279,4 +7279,29 @@ libraries such as @code{chell-quickcheck} to support more complex
|
||||||
testing strategies.")
|
testing strategies.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define ghc-chell-quickcheck-bootstrap
|
||||||
|
(package
|
||||||
|
(name "ghc-chell-quickcheck-bootstrap")
|
||||||
|
(version "0.2.5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"https://hackage.haskell.org/package/chell-quickcheck/chell-quickcheck-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"02bkcnx5k6r5csdnnkvk4wfd0l36nxb87i1463ynw17n7ym9s4cs"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("ghc-chell" ,ghc-chell)
|
||||||
|
("ghc-random" ,ghc-random)
|
||||||
|
("ghc-quickcheck" ,ghc-quickcheck)))
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f))
|
||||||
|
(home-page "https://john-millikin.com/software/chell/")
|
||||||
|
(synopsis "QuickCheck support for the Chell testing library")
|
||||||
|
(description "More complex tests for @code{chell}.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
;;; haskell.scm ends here
|
;;; haskell.scm ends here
|
||||||
|
|
Reference in New Issue