mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: Add ghc-prettyprinter.
* gnu/packages/haskell-xyz.scm (ghc-prettyprinter): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
bcd35444ca
commit
2fad2bf7d7
1 changed files with 29 additions and 0 deletions
|
@ -9456,6 +9456,35 @@ (define-public ghc-prettyclass
|
||||||
types.")
|
types.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-prettyprinter
|
||||||
|
(package
|
||||||
|
(name "ghc-prettyprinter")
|
||||||
|
(version "1.2.1.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://hackage/package/prettyprinter/prettyprinter-"
|
||||||
|
version
|
||||||
|
".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1p9c3q55hba4c0zyxc624g5df7wgsclpsmd8wqpdnmib882q9d1v"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("ghc-doctest" ,ghc-doctest)
|
||||||
|
("ghc-pgp-wordlist" ,ghc-pgp-wordlist)
|
||||||
|
("ghc-tasty" ,ghc-tasty)
|
||||||
|
("ghc-tasty-hunit" ,ghc-tasty-hunit)
|
||||||
|
("ghc-tasty-quickcheck" ,ghc-tasty-quickcheck)))
|
||||||
|
(home-page "https://github.com/quchen/prettyprinter")
|
||||||
|
(synopsis
|
||||||
|
"Modern, easy to use, well-documented, extensible pretty-printer")
|
||||||
|
(description
|
||||||
|
"A prettyprinter/text rendering engine. Easy to use, well-documented,
|
||||||
|
ANSI terminal backend exists, HTML backend is trivial to implement, no name
|
||||||
|
clashes, @code{Text}-based, extensible.")
|
||||||
|
(license license:bsd-2)))
|
||||||
|
|
||||||
(define-public ghc-pretty-hex
|
(define-public ghc-pretty-hex
|
||||||
(package
|
(package
|
||||||
(name "ghc-pretty-hex")
|
(name "ghc-pretty-hex")
|
||||||
|
|
Loading…
Reference in a new issue