mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add ghc-appar.
* gnu/packages/haskell.scm (ghc-appar): New variable.
This commit is contained in:
parent
9d5f0399f9
commit
76ae28f16b
1 changed files with 22 additions and 0 deletions
|
@ -962,6 +962,28 @@ (define-public ghc-regex-base
|
|||
regex-posix, regex-pcre, regex-parsec, regex-tdfa, regex-dfa.")
|
||||
(license bsd-3)))
|
||||
|
||||
(define-public ghc-appar
|
||||
(package
|
||||
(name "ghc-appar")
|
||||
(version "0.1.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"http://hackage.haskell.org/package/appar/appar-"
|
||||
version
|
||||
".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"09jb9ij78fdkz2qk66rw99q19qnm504dpv0yq0pjsl6xwjmndsjq"))))
|
||||
(build-system haskell-build-system)
|
||||
(home-page
|
||||
"http://hackage.haskell.org/package/appar")
|
||||
(synopsis "Simple applicative parser")
|
||||
(description "This package provides a simple applicative parser in Parsec
|
||||
style.")
|
||||
(license bsd-3)))
|
||||
|
||||
(define-public ghc-exceptions
|
||||
(package
|
||||
(name "ghc-exceptions")
|
||||
|
|
Loading…
Reference in a new issue