aboutsummaryrefslogtreecommitdiff
path: root/gn/packages
diff options
context:
space:
mode:
authorjgart2021-11-19 00:50:04 -0500
committerjgart2021-11-19 00:50:04 -0500
commit90047783ca9b23e8bba41e34b6ebd52046827dd4 (patch)
treeb1c0082dc0301e66c11316b34cc6eaa8c9a6878e /gn/packages
parent8d9e7316c09940b1dec86288534045e07a5d2f44 (diff)
downloadguix-bioinformatics-90047783ca9b23e8bba41e34b6ebd52046827dd4.tar.gz
gnu: Add julia-millboard.
* gn/packages/julia.scm (julia-millboard): New variable.
Diffstat (limited to 'gn/packages')
-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)))
+