From mboxrd@z Thu Jan 1 00:00:00 1970 From: ericbavier@openmailbox.org Subject: Re: [PATCH] gnu: Add ghc-blaze-builder. Date: Wed, 21 Oct 2015 22:18:31 -0500 Message-ID: <1445483942-24931-1-git-send-email-ericbavier@openmailbox.org> References: <1445483479-19104-1-git-send-email-ericbavier@openmailbox.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35091) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZpAzb-0007CT-HK for guix-devel@gnu.org; Thu, 22 Oct 2015 04:13:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZpAzW-0008F1-IJ for guix-devel@gnu.org; Thu, 22 Oct 2015 04:12:59 -0400 Received: from smtp10.openmailbox.org ([62.4.1.44]:33331) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZpAzW-0008Em-C8 for guix-devel@gnu.org; Thu, 22 Oct 2015 04:12:54 -0400 In-Reply-To: <1445483479-19104-1-git-send-email-ericbavier@openmailbox.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, Paul van der Walt From: Eric Bavier > * gnu/packages/haskell.scm (ghc-blaze-builder): New variable. > --- > gnu/packages/haskell.scm | 32 ++++++++++++++++++++++++++++++++ > 1 file changed, 32 insertions(+) > > diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm > index 1b37942..219a63c 100644 > --- a/gnu/packages/haskell.scm > +++ b/gnu/packages/haskell.scm > @@ -2000,6 +2000,38 @@ of base to a wider range of compilers, without requiring the use of CPP > pragmas in your code.") > (license bsd-3))) > > +(define-public ghc-blaze-builder > + (package [...] > + (arguments `(#:tests? #f)) ; FIXME: Missing test libraries. > + (inputs > + `(("ghc-text" ,ghc-text) > + ("ghc-hunit" ,ghc-hunit) > + ("ghc-quickcheck" ,ghc-quickcheck) > + ("ghc-utf8-string" ,ghc-utf8-string))) The ghc-hunit and ghc-quickcheck inputs can be removed because #:tests? #f. The ghc-text and ghc-utf8-string inputs should probably be propagated. `~Eric