mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add ghc-xml-types.
* gnu/packages/haskell.scm (ghc-xml-types): New variable.
This commit is contained in:
parent
1aa45bbf6f
commit
e9ef2c51d5
1 changed files with 20 additions and 0 deletions
|
@ -6407,6 +6407,26 @@ (define-public ghc-conduit-extra
|
|||
@code{haskell-platform} packages and @code{conduit}.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ghc-xml-types
|
||||
(package
|
||||
(name "ghc-xml-types")
|
||||
(version "0.3.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://hackage.haskell.org/package/xml-types/"
|
||||
"xml-types-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1jgqxsa9p2q3h6nymbfmvhldqrqlwrhrzmwadlyc0li50x0d8dwr"))))
|
||||
(build-system haskell-build-system)
|
||||
(inputs `(("ghc-text" ,ghc-text)))
|
||||
(home-page "https://john-millikin.com/software/haskell-xml/")
|
||||
(synopsis "Basic types for representing XML")
|
||||
(description "This package provides basic types for representing XML
|
||||
documents.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ghc-union-find
|
||||
(package
|
||||
(name "ghc-union-find")
|
||||
|
|
Loading…
Reference in a new issue