gnu: Add ghc-wl-pprint-text.

* gnu/packages/haskell.scm (ghc-wl-pprint-text): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
ng0 2016-09-18 16:10:02 +00:00 committed by Leo Famulari
parent 3b281f5b8d
commit 6e0741f739
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 22 additions and 0 deletions

View File

@ -6950,4 +6950,26 @@ files and directories in a portable way.")
"This package contains libraries for dealing with system processes.")
(license license:bsd-3)))
(define-public ghc-wl-pprint-text
(package
(name "ghc-wl-pprint-text")
(version "1.1.0.4")
(source
(origin
(method url-fetch)
(uri (string-append
"https://hackage.haskell.org/package/wl-pprint-text/wl-pprint-text-"
version ".tar.gz"))
(sha256
(base32
"1xgizzimfw17mpmw2afvmnvyag976j8ggn7k5r564rkw9f0m6bgz"))))
(build-system haskell-build-system)
(inputs
`(("ghc-text" ,ghc-text)))
(home-page "http://hackage.haskell.org/package/wl-pprint-text")
(synopsis "Wadler/Leijen Pretty Printer for Text values")
(description
"A clone of wl-pprint for use with the text library.")
(license license:bsd-3)))
;;; haskell.scm ends here