mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 00:26:33 +01:00
gnu: Add ghc-test-framework-smallcheck.
* gnu/packages/haskell-check.scm (ghc-test-framework-smallcheck): New public variable.
This commit is contained in:
parent
3166e7324e
commit
70c462b375
1 changed files with 24 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
||||||
;;; Copyright © 2016 David Craven <david@craven.ch>
|
;;; Copyright © 2016 David Craven <david@craven.ch>
|
||||||
;;; Copyright © 2017 Danny Milosavljevic <dannym@scratchpost.org>
|
;;; Copyright © 2017 Danny Milosavljevic <dannym@scratchpost.org>
|
||||||
;;; Copyright © 2017 rsiddharth <s@ricketyspace.net>
|
;;; Copyright © 2017 rsiddharth <s@ricketyspace.net>
|
||||||
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2017, 2018, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2018 Tonton <tonton@riseup.net>
|
;;; Copyright © 2018 Tonton <tonton@riseup.net>
|
||||||
;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
|
;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
;;; Copyright © 2019 Timothy Sample <samplet@ngyro.com>
|
;;; Copyright © 2019 Timothy Sample <samplet@ngyro.com>
|
||||||
|
@ -611,6 +611,29 @@ (define-public ghc-test-framework-quickcheck2
|
||||||
package.")
|
package.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-test-framework-smallcheck
|
||||||
|
(package
|
||||||
|
(name "ghc-test-framework-smallcheck")
|
||||||
|
(version "0.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://hackage.haskell.org/package/"
|
||||||
|
"test-framework-smallcheck/"
|
||||||
|
"test-framework-smallcheck-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1xpgpk1gp4w7w46b4rhj80fa0bcyz8asj2dcjb5x1c37b7rw90b0"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("ghc-smallcheck" ,ghc-smallcheck)
|
||||||
|
("ghc-test-framework" ,ghc-test-framework)))
|
||||||
|
(home-page "https://github.com/Bodigrim/smallcheck")
|
||||||
|
(synopsis "SmallCheck support for test-framework")
|
||||||
|
(description
|
||||||
|
"This package lets programmers use SmallCheck properties in Haskell's
|
||||||
|
test-framework. New projects should use ghc-tasty-smallcheck instead.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public ghc-test-framework-th
|
(define-public ghc-test-framework-th
|
||||||
(package
|
(package
|
||||||
(name "ghc-test-framework-th")
|
(name "ghc-test-framework-th")
|
||||||
|
|
Loading…
Reference in a new issue