mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add ghc-polyparse.
* gnu/packages/haskell.scm (ghc-polyparse): New variable.
This commit is contained in:
parent
ce78a0f50c
commit
47038762ba
1 changed files with 30 additions and 0 deletions
|
@ -1321,6 +1321,36 @@ (define-public hscolour
|
||||||
and mIRC chat codes.")
|
and mIRC chat codes.")
|
||||||
(license bsd-3)))
|
(license bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-polyparse
|
||||||
|
(package
|
||||||
|
(name "ghc-polyparse")
|
||||||
|
(version "1.11")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"http://hackage.haskell.org/package/polyparse/polyparse-"
|
||||||
|
version
|
||||||
|
".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1z417f80b0jm4dgv25fk408p3d9mmcd1dlbya3ry0zdx4md09vrh"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("ghc-text" ,ghc-text)))
|
||||||
|
(home-page
|
||||||
|
"http://code.haskell.org/~malcolm/polyparse/")
|
||||||
|
(synopsis
|
||||||
|
"Alternative parser combinator libraries")
|
||||||
|
(description
|
||||||
|
"This package provides a variety of alternative parser combinator
|
||||||
|
libraries, including the original HuttonMeijer set. The Poly sets have
|
||||||
|
features like good error reporting, arbitrary token type, running state, lazy
|
||||||
|
parsing, and so on. Finally, Text.Parse is a proposed replacement for the
|
||||||
|
standard Read class, for better deserialisation of Haskell values from
|
||||||
|
Strings.")
|
||||||
|
(license lgpl2.1)))
|
||||||
|
|
||||||
(define-public ghc-appar
|
(define-public ghc-appar
|
||||||
(package
|
(package
|
||||||
(name "ghc-appar")
|
(name "ghc-appar")
|
||||||
|
|
Loading…
Reference in a new issue