gnu: Add ghc-monad-loops.

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

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
rsiddharth 2018-03-21 03:44:41 +00:00 committed by Ludovic Courtès
parent bb87be09a9
commit fddb41f22b
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 22 additions and 0 deletions

View File

@ -8886,4 +8886,26 @@ similar to @code{Control.Concurrent.STM.@{TChan,TQueue@}} but with additional
features.")
(license license:bsd-3)))
(define-public ghc-monad-loops
(package
(name "ghc-monad-loops")
(version "0.4.3")
(source
(origin
(method url-fetch)
(uri (string-append "https://hackage.haskell.org/package/"
"monad-loops-" version "/"
"monad-loops-" version ".tar.gz"))
(sha256
(base32
"062c2sn3hc8h50p1mhqkpyv6x8dydz2zh3ridvlfjq9nqimszaky"))))
(build-system haskell-build-system)
(native-inputs `(("ghc-tasty" ,ghc-tasty)
("ghc-tasty-hunit" ,ghc-tasty-hunit)))
(home-page "https://github.com/mokus0/monad-loops")
(synopsis "Monadic loops for Haskell")
(description "This Haskell package provides some useful control
operators for looping.")
(license license:public-domain)))
;;; haskell.scm ends here