diff options
author | Arun Isaac | 2025-09-03 13:33:08 +0100 |
---|---|---|
committer | Arun Isaac | 2025-09-03 13:33:08 +0100 |
commit | 8d88b001abb931c52a702cc7795a78b7b4ae2b17 (patch) | |
tree | 6bae11259a2b89b1ec9f0538eb4e5de9bb5b36d9 | |
parent | f390b2db83abeaabf9bbef8c8bf1fdbacfad33ad (diff) | |
download | guix-bioinformatics-8d88b001abb931c52a702cc7795a78b7b4ae2b17.tar.gz |
gn: Add julia-progressmeter.
* gn/packages/julia.scm (julia-progressmeter): New variable.
-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))) |