mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: Add ghc-quickcheck-assertions.
* gnu/packages/haskell-check.scm (ghc-quickcheck-assertions): New public variable.
This commit is contained in:
parent
70c462b375
commit
e3ae9bf75b
1 changed files with 27 additions and 0 deletions
|
@ -515,6 +515,33 @@ (define-public ghc-quickcheck
|
|||
expressed in Haskell, using combinators defined in the QuickCheck library.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public ghc-quickcheck-assertions
|
||||
(package
|
||||
(name "ghc-quickcheck-assertions")
|
||||
(version "0.3.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://hackage.haskell.org/package/"
|
||||
"quickcheck-assertions/"
|
||||
"quickcheck-assertions-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1kyam4cy7qmnizjwjm8jamq43w7f0fs6ljfplwj0ib6wi2kjh0wv"))))
|
||||
(build-system haskell-build-system)
|
||||
(native-inputs
|
||||
`(("ghc-hspec" ,ghc-hspec)))
|
||||
(inputs
|
||||
`(("ghc-ieee754" ,ghc-ieee754)
|
||||
("ghc-pretty-show" ,ghc-pretty-show)
|
||||
("ghc-quickcheck" ,ghc-quickcheck)))
|
||||
(home-page "https://github.com/s9gf4ult/quickcheck-assertions")
|
||||
(synopsis "HUnit-like assertions for QuickCheck")
|
||||
(description
|
||||
"This Haskell library provides convenient assertions with pretty-printed
|
||||
failure messages for QuickCheck properties, that are similar to those of
|
||||
HUnit.")
|
||||
(license license:lgpl3)))
|
||||
|
||||
(define-public ghc-test-framework
|
||||
(package
|
||||
(name "ghc-test-framework")
|
||||
|
|
Loading…
Reference in a new issue