diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-02-08 15:05:29 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-02-08 15:39:54 +0100 |
commit | d56c8120277ed9ad0b6cf6eb1183f918590c8259 (patch) | |
tree | f26d1213e744fc0bada3e301d90b04e0425da01c /gnu | |
parent | 206907719d43518009e8ff880e58491727047edf (diff) |
gnu: Add ghc-jira-wiki-markup.
* gnu/packages/haskell-xyz.scm (ghc-jira-wiki-markup): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/haskell-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index ca44ebb1aa..1a70ef4587 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -8166,6 +8166,29 @@ easily work with command-line options.") 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") |