From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul van der Walt Subject: [PATCH 059/105] gnu: Add ghc-lifted-base. Date: Thu, 15 Oct 2015 17:28:41 +0200 Message-ID: <1444922968-9205-16-git-send-email-paul@denknerd.org> References: <1444914384-24847-1-git-send-email-paul@denknerd.org> <1444922968-9205-1-git-send-email-paul@denknerd.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47094) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZmkTg-0007ce-1w for guix-devel@gnu.org; Thu, 15 Oct 2015 11:30:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZmkTc-0001if-88 for guix-devel@gnu.org; Thu, 15 Oct 2015 11:29:59 -0400 Received: from mx01.mykolab.com ([95.128.36.1]:51741 helo=mx-out03.mykolab.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZmkTc-0001iY-1o for guix-devel@gnu.org; Thu, 15 Oct 2015 11:29:56 -0400 Received: from mx08.mykolab.com (unknown [10.20.7.48]) by mx-out03.mykolab.com (Postfix) with ESMTPS id 6E5FD23554 for ; Thu, 15 Oct 2015 17:29:54 +0200 (CEST) In-Reply-To: <1444922968-9205-1-git-send-email-paul@denknerd.org> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/haskell.scm (ghc-lifted-base): New variable. --- gnu/packages/haskell.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index fadfba3..f0cacfb 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -2931,4 +2931,37 @@ types of tests into a single test suite.") "HUnit support for the Tasty test framework.") (license expat))) +(define-public ghc-lifted-base + (package + (name "ghc-lifted-base") + (version "0.2.3.6") + (source + (origin + (method url-fetch) + (uri (string-append + "http://hackage.haskell.org/package/lifted-base/lifted-base-" + version + ".tar.gz")) + (sha256 + (base32 + "1yz14a1rsgknwyl08n4kxrlc26hfwmb95a3c2drbnsgmhdyq7iap")))) + (build-system haskell-build-system) + (arguments `(#:tests? #f)) + (propagated-inputs + `(("ghc-transformers-base" ,ghc-transformers-base) + ("ghc-monad-control" ,ghc-monad-control))) + (inputs + `(("ghc-transformers-compat" ,ghc-transformers-compat) + ("ghc-hunit" ,ghc-hunit))) + (home-page + "https://github.com/basvandijk/lifted-base") + (synopsis + "Lifted IO operations from the base library") + (description + "Lifted-base exports IO operations from the base library lifted to any +instance of 'MonadBase' or 'MonadBaseControl'. Note that not all modules from +base are converted yet. The package includes a copy of the monad-peel +testsuite written by Anders Kaseorg.") + (license bsd-3))) + ;;; haskell.scm ends here -- 2.6.1