From 90047783ca9b23e8bba41e34b6ebd52046827dd4 Mon Sep 17 00:00:00 2001 From: jgart Date: Fri, 19 Nov 2021 00:50:04 -0500 Subject: gnu: Add julia-millboard. * gn/packages/julia.scm (julia-millboard): New variable. --- gn/packages/julia.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) 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))) + -- cgit v1.2.3