gnu: Add ghc-unexceptionalio.

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

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
rsiddharth 2017-02-24 06:29:31 +00:00 committed by Ludovic Courtès
parent 55fa53491b
commit a15638034e
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -8194,4 +8194,22 @@ (define-public ghc-hslogger
handler built in.")
(license license:bsd-3)))
(define-public ghc-unexceptionalio
(package
(name "ghc-unexceptionalio")
(version "0.3.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://hackage.haskell.org/package/"
"unexceptionalio-" version "/" "unexceptionalio-"
version ".tar.gz"))
(sha256 (base32 "1f7h7zwky4scdcyjspg4ksfh7x6yra0wjybxq70p7vcwpgk2nzlj"))))
(build-system haskell-build-system)
(home-page "https://github.com/singpolyma/unexceptionalio")
(synopsis "IO without any non-error, synchronous exceptions")
(description "When you've caught all the exceptions that can be
handled safely, this is what you're left with.")
(license license:isc)))
;;; haskell.scm ends here