gnu: Add ghc-haskell-lexer.
* gnu/packages/haskell.scm (ghc-haskell-lexer): New variable.
This commit is contained in:
parent
567bf5b975
commit
b9a64a3671
|
@ -926,6 +926,26 @@ specification in BNF, Happy generates Haskell code to parse the grammar.
|
||||||
Happy works in a similar way to the yacc tool for C.")
|
Happy works in a similar way to the yacc tool for C.")
|
||||||
(license license:bsd-3)))
|
(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
|
(define-public ghc-haskell-src-exts
|
||||||
(package
|
(package
|
||||||
(name "ghc-haskell-src-exts")
|
(name "ghc-haskell-src-exts")
|
||||||
|
|
Loading…
Reference in New Issue