gnu: Add ghc-haskell-lexer.

* gnu/packages/haskell.scm (ghc-haskell-lexer): New variable.
This commit is contained in:
Ricardo Wurmus 2018-02-12 21:27:21 +01:00
parent 567bf5b975
commit b9a64a3671
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -926,6 +926,26 @@ (define-public ghc-happy
Happy works in a similar way to the yacc tool for C.")
(license license:bsd-3)))
(define-public ghc-haskell-lexer
(package
(name "ghc-haskell-lexer")
(version "1.0.1")
(source
(origin
(method url-fetch)
(uri (string-append
"https://hackage.haskell.org/package/haskell-lexer/haskell-lexer-"
version ".tar.gz"))
(sha256
(base32
"0rj3r1pk88hh3sk3mj61whp8czz5kpxhbc78xlr04bxwqjrjmm6p"))))
(build-system haskell-build-system)
(home-page "http://hackage.haskell.org/package/haskell-lexer")
(synopsis "Fully compliant Haskell 98 lexer")
(description
"This package provides a fully compliant Haskell 98 lexer.")
(license license:bsd-3)))
(define-public ghc-haskell-src-exts
(package
(name "ghc-haskell-src-exts")