guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 077/105] gnu: Add ghc-polyparse.


From: Paul van der Walt
Subject: [PATCH 077/105] gnu: Add ghc-polyparse.
Date: Thu, 15 Oct 2015 17:33:18 +0200

* 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]