diff options
author | rsiddharth <s@ricketyspace.net> | 2017-10-18 03:07:30 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-10-22 15:32:15 -0700 |
commit | 59551881b15702cdb3fc01506423ce8634cb83db (patch) | |
tree | 81751c3e65df1e41d2ca6775de7bdd9e9f8be2c6 | |
parent | 97b26920a8be853e87f971737137bd671e492993 (diff) | |
download | guix-59551881b15702cdb3fc01506423ce8634cb83db.tar guix-59551881b15702cdb3fc01506423ce8634cb83db.tar.gz |
gnu: Add ghc-monad-par-extras.
* gnu/packages/haskell.scm (ghc-monad-par-extras): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/haskell.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index ffc6030099..987dffeb6f 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -9257,4 +9257,28 @@ of @code{Par} functionality. See the @code{Control.Monad.Par.Class} module for more details.") (license license:bsd-3))) +(define-public ghc-monad-par-extras + (package + (name "ghc-monad-par-extras") + (version "0.3.3") + (source + (origin + (method url-fetch) + (uri (string-append "https://hackage.haskell.org/package/" + "monad-par-extras-" version "/" + "monad-par-extras-" version ".tar.gz")) + (sha256 + (base32 + "0bl4bd6jzdc5zm20q1g67ppkfh6j6yn8fwj6msjayj621cck67p2")))) + (build-system haskell-build-system) + (inputs `(("ghc-abstract-par" ,ghc-abstract-par) + ("ghc-cereal" ,ghc-cereal) + ("ghc-random" ,ghc-random) + ("ghc-mtl" ,ghc-mtl))) + (home-page "https://github.com/simonmar/monad-par") + (synopsis "Combinators and extra features for Par monads for Haskell") + (description "This Haskell package provides additional data structures, +and other added capabilities layered on top of the @code{Par} monad.") + (license license:bsd-3))) + ;;; haskell.scm ends here |