about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--gn/packages/julia.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gn/packages/julia.scm b/gn/packages/julia.scm
index 651bf02..8ed3f20 100644
--- a/gn/packages/julia.scm
+++ b/gn/packages/julia.scm
@@ -1046,3 +1046,28 @@ interactive shells (the REPL, IJulia, etcetera) to make it easier to work
 interactively with Julia, especially for beginners.")
     (license license:expat)))
 
+(define-public julia-millboard
+  (package
+    (name "julia-millboard")
+    (version "0.2.5")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/wookay/Millboard.jl")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0k9jqgp285qhckldvvsmfk6s69dcr8s74m2fijgm2vxjj2gqjs1n"))))
+    (build-system julia-build-system)
+    (native-inputs
+     `(("julia-jive" ,julia-jive)))
+    (home-page "https://github.com/wookay/Millboard.jl")
+    (synopsis "utilities for soft global scope in interactive Julia environments")
+    (description 
+"SoftGlobalScope is a package for the Julia language that simplifies the 
+variable scoping rules for code in global scope. It is intended for 
+interactive shells (the REPL, IJulia, etcetera) to make it easier to work 
+interactively with Julia, especially for beginners.")
+    (license license:expat)))
+