gnu: Add ghc-jira-wiki-markup.

* gnu/packages/haskell-xyz.scm (ghc-jira-wiki-markup): New variable.
This commit is contained in:
Nicolas Goaziou 2020-02-08 15:05:29 +01:00
parent 206907719d
commit d56c812027
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -8166,6 +8166,29 @@ (define-public ghc-optparse-applicative
command line options in Haskell.")
(license license:bsd-3)))
(define-public ghc-jira-wiki-markup
(package
(name "ghc-jira-wiki-markup")
(version "1.0.0")
(source
(origin
(method url-fetch)
(uri (string-append
"https://hackage.haskell.org/package/jira-wiki-markup/"
"jira-wiki-markup-" version ".tar.gz"))
(sha256
(base32 "1sl2jjcsqg61si33mxjwpf8zdn56kbbgcwqqqzbgifx2qbv4wmf8"))))
(build-system haskell-build-system)
(native-inputs
`(("ghc-tasty" ,ghc-tasty)
("ghc-tasty-hunit" ,ghc-tasty-hunit)))
(home-page "https://github.com/tarleb/jira-wiki-markup")
(synopsis "Handle Jira wiki markup")
(description
"Parse jira wiki text into an abstract syntax tree for easy transformation
to other formats.")
(license license:expat)))
(define-public ghc-emojis
(package
(name "ghc-emojis")