me
/
guix
Archived
1
0
Fork 0

gnu: Add ghc-prettyprinter-ansi-terminal.

* gnu/packages/haskell-xyz.scm (ghc-prettyprinter-ansi-terminal): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
master
John Soo 2020-04-10 21:21:32 -07:00 committed by Leo Famulari
parent 2496e49f85
commit b4f24d668b
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 24 additions and 0 deletions

View File

@ -9533,6 +9533,30 @@ clashes, @code{Text}-based, extensible.")
`(("ghc-quickckeck-instances" , ghc-quickcheck-instances)
,@(package-inputs ghc-prettyprinter)))))
(define-public ghc-prettyprinter-ansi-terminal
(package
(name "ghc-prettyprinter-ansi-terminal")
(version "1.1.1.2")
(source
(origin
(method url-fetch)
(uri (string-append
"mirror://hackage/package/prettyprinter-ansi-terminal/"
"prettyprinter-ansi-terminal-" version ".tar.gz"))
(sha256
(base32 "0ha6vz707qzb5ky7kdsnw2zgphg2dnxrpbrxy8gaw119vwhb9q6k"))))
(build-system haskell-build-system)
(inputs
`(("ghc-ansi-terminal" ,ghc-ansi-terminal)
("ghc-prettyprinter" ,ghc-prettyprinter-1.6)))
(native-inputs `(("ghc-doctest" ,ghc-doctest)))
(home-page
"https://github.com/quchen/prettyprinter")
(synopsis
"ANSI terminal backend for the prettyprinter package")
(description "ANSI terminal backend for the prettyprinter package.")
(license license:bsd-2)))
(define-public ghc-pretty-hex
(package
(name "ghc-pretty-hex")