From mboxrd@z Thu Jan 1 00:00:00 1970 From: ericbavier@openmailbox.org Subject: Re: [PATCH] gnu: Add ghc-bytestring-builder. Date: Wed, 21 Oct 2015 22:18:33 -0500 Message-ID: <1445483942-24931-3-git-send-email-ericbavier@openmailbox.org> References: <1445483479-19104-1-git-send-email-ericbavier@openmailbox.org> <1445483942-24931-1-git-send-email-ericbavier@openmailbox.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35088) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZpAzb-0007CQ-GR 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-0008Ev-HU for guix-devel@gnu.org; Thu, 22 Oct 2015 04:12:59 -0400 Received: from smtp10.openmailbox.org ([62.4.1.44]:45153) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZpAzW-0008En-CB for guix-devel@gnu.org; Thu, 22 Oct 2015 04:12:54 -0400 In-Reply-To: <1445483942-24931-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-bytestring-builder): New variable. > --- > gnu/packages/haskell.scm | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) > > diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm > index 620a842..9b23f38 100644 > --- a/gnu/packages/haskell.scm > +++ b/gnu/packages/haskell.scm > @@ -2445,6 +2445,32 @@ or timeout period. This package provides alternative functions which use the > unbounded @code{Integer} type.") > (license bsd-3))) > > +(define-public ghc-bytestring-builder > + (package [...] > + (arguments `(#:haddock? #f)) ; FIXME: testing framework unavailable Did you mean '#:tests? #f'? or is the comment incorrect? `~Eric