From 2eca48e3101cfa7a787732d471a0b77fac07af07 Mon Sep 17 00:00:00 2001 From: jgart Date: Tue, 30 Nov 2021 20:56:46 -0500 Subject: gnu: Add julia-softglobalscope. * gnu/packages/julay-xyz.scm (julia-softglobalscope): New variable. Signed-off-by: Efraim Flashner --- gnu/packages/julia-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 547d2bf81e..ef9690262b 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -3,6 +3,7 @@ ;;; Copyright © 2021 Simon Tournier ;;; Copyright © 2021 Efraim Flashner ;;; Copyright © 2021 Vinicius Monego +;;; Copyright © 2021 jgart ;;; ;;; This file is part of GNU Guix. ;;; @@ -4191,6 +4192,29 @@ (define-public julia-simpletraits types are fixed after creation.") (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 to make it easier to work interactively with Julia, especially for +beginners.") + (license license:expat))) + (define-public julia-sortingalgorithms (package (name "julia-sortingalgorithms") -- cgit v1.2.3