From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul van der Walt Subject: [PATCH 077/105] gnu: Add ghc-polyparse. Date: Thu, 15 Oct 2015 17:33:18 +0200 Message-ID: <1444923226-9811-11-git-send-email-paul@denknerd.org> References: <1444914384-24847-1-git-send-email-paul@denknerd.org> <1444923226-9811-1-git-send-email-paul@denknerd.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50266) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZmkXj-00041O-JF for guix-devel@gnu.org; Thu, 15 Oct 2015 11:34:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZmkXf-0005bk-IA for guix-devel@gnu.org; Thu, 15 Oct 2015 11:34:11 -0400 Received: from mx01.mykolab.com ([95.128.36.1]:32796 helo=mx-out02.mykolab.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZmkXf-0005bR-CM for guix-devel@gnu.org; Thu, 15 Oct 2015 11:34:07 -0400 Received: from mx08.mykolab.com (unknown [10.20.7.48]) by mx-out02.mykolab.com (Postfix) with ESMTPS id CEE256217D for ; Thu, 15 Oct 2015 17:34:05 +0200 (CEST) In-Reply-To: <1444923226-9811-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-polyparse): New variable. --- gnu/packages/haskell.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 8435b24..f5f1dda 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -1362,6 +1362,35 @@ output formats: ANSI terminal codes (optionally XTerm-256colour codes), HTML annotations, XHTML 1.0 with inline CSS styling, LaTeX, and mIRC chat codes.") (license bsd-3))) +(define-public ghc-polyparse + (package + (name "ghc-polyparse") + (version "1.11") + (source + (origin + (method url-fetch) + (uri (string-append + "http://hackage.haskell.org/package/polyparse/polyparse-" + version + ".tar.gz")) + (sha256 + (base32 + "1z417f80b0jm4dgv25fk408p3d9mmcd1dlbya3ry0zdx4md09vrh")))) + (build-system haskell-build-system) + (propagated-inputs + `(("ghc-text" ,ghc-text))) + (home-page + "http://code.haskell.org/~malcolm/polyparse/") + (synopsis + "A variety of alternative parser combinator libraries") + (description + "A variety of alternative parser combinator libraries, including the +original HuttonMeijer set. The Poly sets have features like good error +reporting, arbitrary token type, running state, lazy parsing, and so on. +Finally, Text.Parse is a proposed replacement for the standard Read class, for +better deserialisation of Haskell values from Strings.") + (license lgpl2.1))) + (define-public ghc-appar (package (name "ghc-appar") -- 2.6.1