civodul pushed a commit to branch master
in repository guix.
commit 2b6b6061da55c5ad1cc9e53d5be1ebd599192b11
Author: Spencer King <[email protected]>
AuthorDate: Thu Dec 19 19:47:20 2024 +0000
gnu: Add julia-timeroutputs.
* gnu/packages/julia-xyz.scm (julia-timeroutputs): New variable.
Change-Id: I2104014cb77156f5e178c5a34b6630508d7436af
Signed-off-by: Ludovic Courtès <[email protected]>
---
gnu/packages/julia-xyz.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index be2501a934..6deb214262 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -6622,6 +6622,27 @@ standard named test images and example images for the
internal usage in
package.")
(license license:expat)))
+(define-public julia-timeroutputs
+ (package
+ (name "julia-timeroutputs")
+ (version "0.5.26")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/KristofferC/TimerOutputs.jl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0mz5kpjz2mcmaywxjp1y87wx02lmvi2b0z012rnz70p1y39s5y0v"))))
+ (build-system julia-build-system)
+ (propagated-inputs (list julia-exprtools))
+ (home-page "https://github.com/KristofferC/TimerOutputs.jl")
+ (synopsis "Formatted output of timed sections in Julia")
+ (description "This package generates formatted output from timings made
+in different sections of a program.")
+ (license license:expat)))
+
(define-public julia-tokenize
(package
(name "julia-tokenize")