[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
120/153: gnu: Add ghc-parsers.
From: |
Paul |
Subject: |
120/153: gnu: Add ghc-parsers. |
Date: |
Wed, 21 Oct 2015 16:07:50 +0000 |
toothbrush pushed a commit to branch wip-haskell-platform-7.10.2-a
in repository guix.
commit 6e6e30e7ea2590e26ddd86b10ec4bea8a3261126
Author: Paul van der Walt <address@hidden>
Date: Thu Oct 15 16:43:40 2015 +0200
gnu: Add ghc-parsers.
* gnu/packages/haskell.scm (ghc-parsers): New variable.
---
gnu/packages/haskell.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 files changed, 38 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index d3e38fc..4316c4a 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -1480,6 +1480,44 @@ Both IPv4 and IPv6 are supported.")
by Roman Cheplyaka).")
(license bsd-3)))
+(define-public ghc-parsers
+ (package
+ (name "ghc-parsers")
+ (version "0.12.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://hackage.haskell.org/package/parsers/parsers-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "18wzmp8y3py4qa8hdsxqm0jfzmwy744dw7xa48r5s8ynhpimi462"))))
+ (build-system haskell-build-system)
+ (arguments `(#:tests? #f)) ; FIXME: Test fails with "cannot satisfy
+ ; -package attoparsec-0.13.0.1"
+ (propagated-inputs
+ `(("ghc-base-orphans" ,ghc-base-orphans)
+ ("ghc-attoparsec" ,ghc-attoparsec)
+ ("ghc-parsec" ,ghc-parsec)
+ ("ghc-scientific" ,ghc-scientific)
+ ("ghc-charset" ,ghc-charset)))
+ (inputs
+ `(("ghc-text" ,ghc-text)
+ ("ghc-unordered-containers" ,ghc-unordered-containers)
+ ("ghc-doctest" ,ghc-doctest)
+ ("ghc-quickcheck" ,ghc-quickcheck)
+ ("ghc-quickcheck-instances" ,ghc-quickcheck-instances)))
+ (home-page "http://github.com/ekmett/parsers/")
+ (synopsis "Parsing combinators")
+ (description
+ "This library provides convenient combinators for working with and
+building parsing combinator libraries. Given a few simple instances, you get
+access to a large number of canned definitions. Instances exist for the
+parsers provided by parsec, attoparsec and base's Text.Read.")
+ (license bsd-3)))
+
(define-public ghc-attoparsec
(package
(name "ghc-attoparsec")
- 116/153: gnu: Add ghc-hlint., (continued)
- 116/153: gnu: Add ghc-hlint., Paul, 2015/10/21
- 112/153: gnu: Add ghc-cpphs., Paul, 2015/10/21
- 117/153: gnu: Add ghc-resourcet., Paul, 2015/10/21
- 57/153: gnu: Add ghc-blaze-builder., Paul, 2015/10/21
- 108/153: gnu: Add ghc-prelude-extras., Paul, 2015/10/21
- 49/153: gnu: Add ghc-base-orphans., Paul, 2015/10/21
- 118/153: gnu: Add ghc-streaming-commons., Paul, 2015/10/21
- 131/153: gnu: Add ghc-haddock-library., Paul, 2015/10/21
- 124/153: gnu: Add ghc-wai-extra., Paul, 2015/10/21
- 123/153: gnu: Add ghc-wai-logger., Paul, 2015/10/21
- 120/153: gnu: Add ghc-parsers.,
Paul <=
- 134/153: gnu: Add ghc-alex., Paul, 2015/10/21
- 128/153: gnu: Add ghc-cheapskate., Paul, 2015/10/21
- 138/153: gnu: Add ghc-haskell-src., Paul, 2015/10/21
- 46/153: gnu: Add ghc-uniplate., Paul, 2015/10/21
- 56/153: gnu: Add ghc-base-compat., Paul, 2015/10/21
- 72/153: gnu: Add ghc-bifunctors., Paul, 2015/10/21
- 96/153: gnu: Add ghc-css-text., Paul, 2015/10/21
- 105/153: gnu: Add ghc-semigroupoids., Paul, 2015/10/21
- 106/153: gnu: Add ghc-reducers., Paul, 2015/10/21
- 100/153: gnu: Add ghc-comonad., Paul, 2015/10/21