about summary refs log tree commit diff
diff options
context:
space:
mode:
authorjgart2021-11-19 00:50:50 -0500
committerjgart2021-11-19 00:50:50 -0500
commitfde1d1abab7be6d8ae0d3f358894738e26784895 (patch)
tree6f184bc7c09ec75326b27a39fbd157e984315cf5
parent90047783ca9b23e8bba41e34b6ebd52046827dd4 (diff)
downloadguix-bioinformatics-fde1d1abab7be6d8ae0d3f358894738e26784895.tar.gz
gnu: Add julia-jive.
* gn/packages/julia.scm (julia-jive): New variable.
-rw-r--r--gn/packages/julia.scm18
1 files changed, 18 insertions, 0 deletions
diff --git a/gn/packages/julia.scm b/gn/packages/julia.scm
index 8ed3f20..65a24d3 100644
--- a/gn/packages/julia.scm
+++ b/gn/packages/julia.scm
@@ -1071,3 +1071,21 @@ interactive shells (the REPL, IJulia, etcetera) to make it easier to work
 interactively with Julia, especially for beginners.")
     (license license:expat)))
 
+(define-public julia-jive
+  (package
+    (name "julia-jive")
+    (version "0.2.20")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/wookay/Jive.jl")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0khwsdh8472jxcfi9lqw14l49sqlbsixql1jb4irnyajxkdjrcsf"))))
+    (build-system julia-build-system)
+    (home-page "https://github.com/wookay/Jive.jl")
+    (synopsis "Julia package to help with writing tests")
+    (description "Julia package to help with writing tests")
+    (license license:expat)))