diff options
-rw-r--r-- | gn/packages/julia.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gn/packages/julia.scm b/gn/packages/julia.scm index a00244f..92f4237 100644 --- a/gn/packages/julia.scm +++ b/gn/packages/julia.scm @@ -2784,3 +2784,23 @@ 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-progressmeter + (package + (name "julia-progressmeter") + (version "1.11.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/timholy/ProgressMeter.jl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mgsq5ynqd35yldmafmbcmch0xdjqyga4wb1lllqfffsipj8ki4k")))) + (build-system julia-build-system) + (home-page "https://github.com/timholy/ProgressMeter.jl") + (synopsis "Progress meter for long-running computations") + (description "@code{julia-progressmeter} provides a progress meter +for long-running computations.") + (license license:expat))) |