mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-22 02:07:56 +01:00
gnu: Add ghc-parser-combinators.
* gnu/packages/haskell.scm (ghc-parser-combinators): New variable.
This commit is contained in:
parent
f941a52a14
commit
aeecabd43c
1 changed files with 21 additions and 0 deletions
|
@ -3448,6 +3448,27 @@ (define-public ghc-parsec
|
||||||
is also parametric in the input stream type.")
|
is also parametric in the input stream type.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-parser-combinators
|
||||||
|
(package
|
||||||
|
(name "ghc-parser-combinators")
|
||||||
|
(version "0.4.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://hackage.haskell.org/package/"
|
||||||
|
"parser-combinators/parser-combinators-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1azkz0a6ikym02s8wydjcklp7rz8k512bs4s9lp9g1g03m0yj95i"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(home-page "https://github.com/mrkkrp/parser-combinators")
|
||||||
|
(synopsis "Commonly useful parser combinators")
|
||||||
|
(description
|
||||||
|
"This is a lightweight package providing commonly useful parser
|
||||||
|
combinators.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public ghc-vector
|
(define-public ghc-vector
|
||||||
(package
|
(package
|
||||||
(name "ghc-vector")
|
(name "ghc-vector")
|
||||||
|
|
Loading…
Reference in a new issue