gnu: Add ghc-unliftio-core.

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

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

View File

@ -9299,4 +9299,26 @@ ghc-aeson.")
functions for the ghc-persistent package.")
(license license:expat)))
(define-public ghc-unliftio-core
(package
(name "ghc-unliftio-core")
(version "0.1.1.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://hackage.haskell.org/package/"
"unliftio-core-" version "/"
"unliftio-core-" version ".tar.gz"))
(sha256
(base32
"1193fplsjm1lcr05xwvkj1rsyzx74i755f6kw3ikmxbsv0bv0l3m"))))
(build-system haskell-build-system)
(home-page
"https://github.com/fpco/unliftio/tree/master/unliftio-core#readme")
(synopsis "The MonadUnliftIO typeclass for unlifting monads to IO")
(description "This Haskell package provides the core @code{MonadUnliftIO}
typeclass, instances for base and transformers, and basic utility
functions.")
(license license:expat)))
;;; haskell.scm ends here