mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add ghc-haskell-src-exts-util.
* gnu/packages/haskell.scm (ghc-haskell-src-exts-util): New variable.
This commit is contained in:
parent
2025964bba
commit
3657bd1faa
1 changed files with 26 additions and 0 deletions
|
@ -1012,6 +1012,32 @@ (define-public ghc-haskell-src-exts
|
|||
patterns as per the HaRP extension as well as HSX-style embedded XML syntax.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public ghc-haskell-src-exts-util
|
||||
(package
|
||||
(name "ghc-haskell-src-exts-util")
|
||||
(version "0.2.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://hackage.haskell.org/package/"
|
||||
"haskell-src-exts-util/haskell-src-exts-util-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"14rhwcrdz3kfb69c64qn8kybl7wnpajrjlfz5p95ca4bva4mwclg"))))
|
||||
(build-system haskell-build-system)
|
||||
(inputs
|
||||
`(("ghc-data-default" ,ghc-data-default)
|
||||
("ghc-haskell-src-exts" ,ghc-haskell-src-exts)
|
||||
("ghc-semigroups" ,ghc-semigroups)
|
||||
("ghc-uniplate" ,ghc-uniplate)))
|
||||
(home-page "https://github.com/pepeiborra/haskell-src-exts-util")
|
||||
(synopsis "Helper functions for working with haskell-src-exts trees")
|
||||
(description
|
||||
"This package provides helper functions for working with
|
||||
@code{haskell-src-exts} trees.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public hlint
|
||||
(package
|
||||
(name "hlint")
|
||||
|
|
Loading…
Reference in a new issue