From mboxrd@z Thu Jan 1 00:00:00 1970 From: ericbavier@openmailbox.org Subject: Re: [PATCH] gnu: Add ghc-haskell-src-exts. Date: Thu, 22 Oct 2015 03:47:31 -0500 Message-ID: <1445503671-30014-3-git-send-email-ericbavier@openmailbox.org> References: <1445483479-19104-1-git-send-email-ericbavier@openmailbox.org> <1445503671-30014-1-git-send-email-ericbavier@openmailbox.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51909) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZpG7v-0003jB-Gv for guix-devel@gnu.org; Thu, 22 Oct 2015 09:41:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZpG7q-0007tN-7m for guix-devel@gnu.org; Thu, 22 Oct 2015 09:41:55 -0400 Received: from smtp1.openmailbox.org ([62.4.1.35]:35709) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZpG7p-0007t0-W2 for guix-devel@gnu.org; Thu, 22 Oct 2015 09:41:50 -0400 In-Reply-To: <1445503671-30014-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-haskell-src-exts): New variable. > --- > gnu/packages/haskell.scm | 37 +++++++++++++++++++++++++++++++++++++ > 1 file changed, 37 insertions(+) > > diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm > index d374b8d..d56c9e2 100644 > --- a/gnu/packages/haskell.scm > +++ b/gnu/packages/haskell.scm > @@ -461,6 +461,43 @@ specification in BNF, Happy generates Haskell code to parse the grammar. > Happy works in a similar way to the yacc tool for C.") > (license bsd-3))) > > +(define-public ghc-haskell-src-exts > + (package [...] > + "Manipulating Haskell source: abstract syntax, lexer, parser, and > +pretty-printer") How about: "Manipulate Haskell source" `~Eric > + (description > + "Haskell-Source with Extensions (HSE, haskell-src-exts) is an extension > +of the standard haskell-src package, and handles most registered syntactic > +extensions to Haskell. All extensions implemented in GHC are supported. > +Apart from these standard extensions, it also handles regular patterns as per > +the HaRP extension as well as HSX-style embedded XML syntax.") > + (license bsd-3))) > + > (define-public ghc-cpphs > (package > (name "ghc-cpphs") > -- > 2.5.0 >