From mboxrd@z Thu Jan 1 00:00:00 1970 From: rsiddharth Subject: [PATCH] gnu: Add ghc-unexceptionalio. Date: Fri, 24 Feb 2017 06:29:31 +0000 Message-ID: <20170224062931.25808-1-s@ricketyspace.net> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43880) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ch9Od-0007I6-7X for guix-devel@gnu.org; Fri, 24 Feb 2017 01:30:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ch9OZ-0008U1-8Z for guix-devel@gnu.org; Fri, 24 Feb 2017 01:30:27 -0500 Received: from ricketyspace.net ([45.55.79.15]:57995) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ch9OZ-0008Tu-4j for guix-devel@gnu.org; Fri, 24 Feb 2017 01:30:23 -0500 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/haskell.scm (ghc-unexceptionalio): New variable. --- gnu/packages/haskell.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index d0f659f6e..2415881e8 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -8194,4 +8194,22 @@ or filter messages based on the priority and source. It also has a syslog 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 -- 2.11.0