[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
134/153: gnu: Add ghc-alex.
From: |
Paul |
Subject: |
134/153: gnu: Add ghc-alex. |
Date: |
Wed, 21 Oct 2015 16:07:55 +0000 |
toothbrush pushed a commit to branch wip-haskell-platform-7.10.2-a
in repository guix.
commit 6df4511a0801d468080873717d897a2e907b6128
Author: Paul van der Walt <address@hidden>
Date: Fri Oct 16 11:06:14 2015 +0200
gnu: Add ghc-alex.
* gnu/packages/haskell.scm (ghc-alex): New variable.
---
gnu/packages/haskell.scm | 29 +++++++++++++++++++++++++++++
1 files changed, 29 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index e2b19e3..c47aeff 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -495,6 +495,35 @@ are no options for manipulating the reflected expressions
beyond showing
them.")
(license bsd-3)))
+(define-public ghc-alex
+ (package
+ (name "ghc-alex")
+ (version "3.1.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://hackage.haskell.org/package/alex/alex-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "17x13nbbr79xgdlzywjqw19vcl6iygjnssjnxnajgijkv764wknn"))))
+ (build-system haskell-build-system)
+ (arguments `(#:tests? #f)) ; FIXME: Tests broken for GHC 7.10. Fixed
+ ; upstream, see
+ ; <https://github.com/simonmar/alex/issues/62>
+ (inputs `(("ghc-quickcheck" ,ghc-quickcheck)))
+ (home-page "http://www.haskell.org/alex/")
+ (synopsis
+ "Tool for generating lexical analysers in Haskell")
+ (description
+ "Alex is a tool for generating lexical analysers in Haskell. It takes a
+description of tokens based on regular expressions and generates a Haskell
+module containing code for scanning text efficiently. It is similar to the
+tool lex or flex for C/C++.")
+ (license bsd-3)))
+
(define-public ghc-cmdargs
(package
(name "ghc-cmdargs")
- 112/153: gnu: Add ghc-cpphs., (continued)
- 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, 2015/10/21
- 134/153: gnu: Add ghc-alex.,
Paul <=
- 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
- 82/153: gnu: Add ghc-tasty., Paul, 2015/10/21