guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/05: gnu: Add ghc-jira-wiki-markup.


From: guix-commits
Subject: 03/05: gnu: Add ghc-jira-wiki-markup.
Date: Sat, 8 Feb 2020 09:40:31 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit d56c8120277ed9ad0b6cf6eb1183f918590c8259
Author: Nicolas Goaziou <address@hidden>
AuthorDate: Sat Feb 8 15:05:29 2020 +0100

    gnu: Add ghc-jira-wiki-markup.
    
    * gnu/packages/haskell-xyz.scm (ghc-jira-wiki-markup): New variable.
---
 gnu/packages/haskell-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index ca44ebb..1a70ef4 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]