about summary refs log tree commit diff
diff options
context:
space:
mode:
authorArun Isaac2022-02-05 13:44:51 +0530
committerArun Isaac2022-02-05 13:44:51 +0530
commitad0d34d858918c62b361aa24323e05e0a4440550 (patch)
tree1da31e1446b228513ab23a1eba73c41250b20672
parent5f824e14f1261e479adf0f873442ecf2b0223000 (diff)
downloadguix-bioinformatics-ad0d34d858918c62b361aa24323e05e0a4440550.tar.gz
gn: Add tissue.
* gn/packages/gemini.scm (tissue): New variable.
-rw-r--r--gn/packages/gemini.scm29
1 files changed, 29 insertions, 0 deletions
diff --git a/gn/packages/gemini.scm b/gn/packages/gemini.scm
new file mode 100644
index 0000000..f0ed135
--- /dev/null
+++ b/gn/packages/gemini.scm
@@ -0,0 +1,29 @@
+(define-module (gn packages gemini)
+  #:use-module (guix build-system gnu)
+  #:use-module (guix packages)
+  #:use-module (guix git-download)
+  #:use-module ((guix licenses) #:prefix license:))
+
+(define-public tissue
+  (package
+    (name "tissue")
+    (version "0.1.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://git.systemreboot.net/tissue")
+                    (commit "20af13095723a44f58720670f3e98f04f7bf50b6")))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0rahq7adhlx9krs31im2x3lsm0307xw12865nik2nwccqmg171k1"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:make-flags (list (string-append "prefix=" %output))
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure))))
+    (home-page "https://tissue.systemreboot.net")
+    (synopsis "Text based issue tracker")
+    (description "tissue is a text based issue tracker.")
+    (license license:gpl3+)))