mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Add ghc-haskell-src-exts.
* gnu/packages/haskell.scm (ghc-haskell-src-exts): New variable.
This commit is contained in:
parent
81da1a45e8
commit
6ff19687b1
1 changed files with 33 additions and 0 deletions
|
@ -461,6 +461,39 @@ (define-public ghc-happy
|
|||
Happy works in a similar way to the yacc tool for C.")
|
||||
(license bsd-3)))
|
||||
|
||||
(define-public ghc-haskell-src-exts
|
||||
(package
|
||||
(name "ghc-haskell-src-exts")
|
||||
(version "1.16.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"http://hackage.haskell.org/package/haskell-src-exts/haskell-src-exts-"
|
||||
version
|
||||
".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1h8gjw5g92rvvzadqzpscg73x7ajvs1wlphrh27afim3scdd8frz"))))
|
||||
(build-system haskell-build-system)
|
||||
(inputs
|
||||
`(("cpphs" ,cpphs)
|
||||
("ghc-mtl" ,ghc-mtl)
|
||||
("ghc-smallcheck" ,ghc-smallcheck)
|
||||
("ghc-tasty" ,ghc-tasty)
|
||||
("ghc-happy" ,ghc-happy)
|
||||
("ghc-tasty-smallcheck" ,ghc-tasty-smallcheck)
|
||||
("ghc-tasty-golden" ,ghc-tasty-golden)
|
||||
("ghc-syb" ,ghc-syb)))
|
||||
(home-page "https://github.com/haskell-suite/haskell-src-exts")
|
||||
(synopsis "Library for manipulating Haskell source")
|
||||
(description "Haskell-Source with Extensions (HSE, haskell-src-exts) is an
|
||||
extension of the standard @code{haskell-src} package, and handles most
|
||||
registered syntactic extensions to Haskell. All extensions implemented in GHC
|
||||
are supported. Apart from these standard extensions, it also handles regular
|
||||
patterns as per the HaRP extension as well as HSX-style embedded XML syntax.")
|
||||
(license bsd-3)))
|
||||
|
||||
(define-public cpphs
|
||||
(package
|
||||
(name "cpphs")
|
||||
|
|
Loading…
Reference in a new issue