mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: Add ghc-text-conversions.
* gnu/packages/haskell-xyz.scm (ghc-text-conversions): New variable.
This commit is contained in:
parent
d56c812027
commit
e90a06fcc5
1 changed files with 25 additions and 0 deletions
|
@ -8222,6 +8222,31 @@ (define-public ghc-emojis
|
|||
@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")
|
||||
|
|
Loading…
Reference in a new issue