mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add ghc-quickcheck-2.9.
* gnu/packages/haskell-check.scm (ghc-quickcheck-2.9): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
68fdb38f54
commit
44cea57841
1 changed files with 14 additions and 0 deletions
|
@ -8,6 +8,7 @@
|
||||||
;;; 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 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
|
;;; Copyright © 2018 Tonton <tonton@riseup.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -451,6 +452,19 @@ (define-public ghc-quickcheck
|
||||||
expressed in Haskell, using combinators defined in the QuickCheck library.")
|
expressed in Haskell, using combinators defined in the QuickCheck library.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-quickcheck-2.9
|
||||||
|
(package
|
||||||
|
(inherit ghc-quickcheck)
|
||||||
|
(name "ghc-quickcheck")
|
||||||
|
(version "2.9.2")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://hackage.haskell.org/package/QuickCheck-2.9.2/QuickCheck-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"119np67qvx8hyp9vkg4gr2wv3lj3j6ay2vl4hxspkg43ymb1cp0m"))))))
|
||||||
|
|
||||||
(define-public ghc-quickcheck-latest
|
(define-public ghc-quickcheck-latest
|
||||||
(package (inherit ghc-quickcheck)
|
(package (inherit ghc-quickcheck)
|
||||||
(version "2.11.3")
|
(version "2.11.3")
|
||||||
|
|
Loading…
Reference in a new issue