mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add ghc-quickcheck.
* gnu/packages/haskell.scm (ghc-quickcheck): New variable.
This commit is contained in:
parent
c272160ab0
commit
dc0ae39a8f
1 changed files with 30 additions and 0 deletions
|
@ -507,4 +507,34 @@ (define-public ghc-tf-random
|
||||||
Hashing\" by Claessen, Pałka for details and the rationale of the design.")
|
Hashing\" by Claessen, Pałka for details and the rationale of the design.")
|
||||||
(license bsd-3)))
|
(license bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-quickcheck
|
||||||
|
(package
|
||||||
|
(name "ghc-quickcheck")
|
||||||
|
(version "2.8")
|
||||||
|
(outputs '("out" "doc"))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"http://hackage.haskell.org/package/QuickCheck/QuickCheck-"
|
||||||
|
version
|
||||||
|
".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"04xs6mq22bcnkpi616qrbm7jlivh9csnhmvjgp1ifq52an1wr4rx"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ; FIXME: currently missing libraries used for tests.
|
||||||
|
#:configure-flags '("-f base4")))
|
||||||
|
;; these inputs are necessary to use this package
|
||||||
|
(propagated-inputs
|
||||||
|
`(("ghc-tf-random" ,ghc-tf-random)))
|
||||||
|
(home-page
|
||||||
|
"https://github.com/nick8325/quickcheck")
|
||||||
|
(synopsis
|
||||||
|
"Automatic testing of Haskell programs")
|
||||||
|
(description
|
||||||
|
"QuickCheck is a library for random testing of program properties.")
|
||||||
|
(license bsd-3)))
|
||||||
|
|
||||||
;;; haskell.scm ends here
|
;;; haskell.scm ends here
|
||||||
|
|
Loading…
Reference in a new issue