diff options
author | jgart | 2021-11-19 00:49:12 -0500 |
---|---|---|
committer | jgart | 2021-11-19 00:49:12 -0500 |
commit | 8d9e7316c09940b1dec86288534045e07a5d2f44 (patch) | |
tree | 23e4ee61ee4bbbda4faa897843a9592628b8a69a | |
parent | 4cfa04f4529a845d82ede8f31c87baef59d1ef8e (diff) | |
download | guix-bioinformatics-8d9e7316c09940b1dec86288534045e07a5d2f44.tar.gz |
gnu: Add julia-softglobalscope.
* gn/packages/julia.scm (julia-softglobalscope): New variable.
-rw-r--r-- | gn/packages/julia.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gn/packages/julia.scm b/gn/packages/julia.scm index 276a21a..651bf02 100644 --- a/gn/packages/julia.scm +++ b/gn/packages/julia.scm @@ -1022,3 +1022,27 @@ that still support Julia versions older than 1.6.") (synopsis "binary provider for Julia") (description "Packages are installed to a @code{Prefix}; a folder that acts similar to the @code{/usr/local} directory on Unix-like systems, containing a @code{bin} folder for binaries, a @code{lib} folder for libraries, etc... @code{Prefix} objects can have tarballs @code{install()}'ed within them, @code{uninstall()}'ed from them, etc...") (license license:expat))) + +(define-public julia-softglobalscope + (package + (name "julia-softglobalscope") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stevengj/SoftGlobalScope.jl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1n3l0al1vw5jpb4k9a29a71666cdb617nmiqg34wcmyfzrxpvv39")))) + (build-system julia-build-system) + (home-page "https://github.com/stevengj/SoftGlobalScope.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))) + |