guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

09/09: gnu: Add julia-progressbars.


From: guix-commits
Subject: 09/09: gnu: Add julia-progressbars.
Date: Tue, 3 Sep 2024 08:16:16 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit a56affbdd8b44aa68f504563d8a552398a3ca937
Author: Spencer King <spencer.king@geneoscopy.com>
AuthorDate: Sat Aug 31 00:59:31 2024 +0000

    gnu: Add julia-progressbars.
    
    * gnu/packages/julia-xyz.scm (julia-progressbars): New variable.
    
    Change-Id: Idd2b6a8aaaec186c01ecbc852d03f3df84bab8b5
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/julia-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 56a3c9772d..1743d27226 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -5,6 +5,7 @@
 ;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
 ;;; Copyright © 2021 jgart <jgart@dismail.de>
 ;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
+;;; Copyright © 2024 Spencer King <spencer.king@geneoscopy.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -4917,6 +4918,27 @@ everything from run time algorithm choice to code 
generation at compile time.")
 human-readable format.")
     (license license:expat)))
 
+(define-public julia-progressbars
+  (package
+    (name "julia-progressbars")
+    (version "1.5.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/cloud-oak/ProgressBars.jl";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0y4i2kdir0wxr3amafidr3585w8lj4s0cqfcbl690a8jvw6rs3jw"))))
+    (build-system julia-build-system)
+    (home-page "https://github.com/cloud-oak/ProgressBars.jl";)
+    (synopsis "Progress bar for Julia")
+    (description
+     "This package provides a fast, extensible progress bar for Julia.
+This can help users track the progress of long-running tasks.")
+    (license license:mpl2.0)))
+
 (define-public julia-pycall
   (package
     (name "julia-pycall")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]