me
/
guix
Archived
1
0
Fork 0

gnu: Add ghc-text-conversions.

* gnu/packages/haskell-xyz.scm (ghc-text-conversions): New variable.
master
Nicolas Goaziou 2020-02-08 15:07:22 +01:00
parent d56c812027
commit e90a06fcc5
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 25 additions and 0 deletions

View File

@ -8222,6 +8222,31 @@ require aeson
@end itemize")
(license license:bsd-3)))
(define-public ghc-text-conversions
(package
(name "ghc-text-conversions")
(version "0.3.0")
(source
(origin
(method url-fetch)
(uri (string-append
"https://hackage.haskell.org/package/text-conversions/"
"text-conversions-" version ".tar.gz"))
(sha256
(base32 "089c56vdj9xysqfr1hnvbnrghlg83q6w10xk02gflpsidcpvwmhp"))))
(build-system haskell-build-system)
(inputs
`(("ghc-base16-bytestring" ,ghc-base16-bytestring)
("ghc-base64-bytestring" ,ghc-base64-bytestring)
("ghc-errors" ,ghc-errors)))
(native-inputs
`(("ghc-hspec" ,ghc-hspec)
("ghc-hspec-discover" ,ghc-hspec-discover)))
(home-page "https://github.com/cjdev/text-conversions#readme")
(synopsis "Safe conversions between textual types")
(description "Safe conversions between textual types")
(license license:isc)))
(define-public ghc-doclayout
(package
(name "ghc-doclayout")