gnu: Add ghc-monadrandom.

* gnu/packages/haskell.scm (ghc-monadrandom): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
rsiddharth 2017-10-18 03:07:39 +00:00 committed by Ludovic Courtès
parent 4562c8c894
commit 87129984ca
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -9514,4 +9514,29 @@ (define-public ghc-contravariant-extras
@code{ghc-contravariant} package.")
(license license:expat)))
(define-public ghc-monadrandom
(package
(name "ghc-monadrandom")
(version "0.4.2.3")
(source
(origin
(method url-fetch)
(uri (string-append "https://hackage.haskell.org/package/"
"MonadRandom-" version "/"
"MonadRandom-" version ".tar.gz"))
(sha256
(base32
"1h1nhswrcmhy3mq6vd530p0df51fcnnf4csbwnljar7cf0mb2h6y"))))
(build-system haskell-build-system)
(inputs `(("ghc-transformers-compat" ,ghc-transformers-compat)
("ghc-mtl" ,ghc-mtl)
("ghc-primitive" ,ghc-primitive)
("ghc-fail" ,ghc-fail)
("ghc-random" ,ghc-random)))
(home-page "https://github.com/byorgey/MonadRandom")
(synopsis "Random-number generation monad for Haskell")
(description "This Haskell package provides support for computations
which consume random values.")
(license license:bsd-3)))
;;; haskell.scm ends here