[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/12: gnu: Add julia-benchmarktools.
From: |
guix-commits |
Subject: |
05/12: gnu: Add julia-benchmarktools. |
Date: |
Sat, 20 Mar 2021 17:29:46 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 03010d5d3efd4ac19c4bddea67cbfe09c129db8d
Author: nixo <nicolo@nixo.xyz>
AuthorDate: Sat Jan 30 15:47:29 2021 +0100
gnu: Add julia-benchmarktools.
* gnu/packages/julia-xyz.scm (julia-benchmarktools): New variable.
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 c9e1d0d..09043c5 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -44,6 +44,28 @@ acts like @code{convert(T, x)}, but without the restriction
of returning a
be GPU compatible without throwing away the wrapper.")
(license license:expat)))
+(define-public julia-benchmarktools
+ (package
+ (name "julia-benchmarktools")
+ (version "0.5.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaCI/BenchmarkTools.jl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0nsx21m3i5h22lkgyrmfj6r085va6ag40khwssqs8y7l0wz98lvp"))))
+ (build-system julia-build-system)
+ (propagated-inputs `(("julia-json" ,julia-json)))
+ (home-page "https://github.com/JuliaCI/BenchmarkTools.jl")
+ (synopsis "Benchmarking framework for the Julia language")
+ (description "@code{BenchmarkTools.jl} makes performance tracking of Julia
+code easy by supplying a framework for writing and running groups of
+benchmarks as well as comparing benchmark results.")
+ (license license:expat)))
+
(define-public julia-compat
(package
(name "julia-compat")
- branch master updated (25db3b2 -> d4987a5), guix-commits, 2021/03/20
- 01/12: doc: Fix syntax of '.guix-channel' dependency example., guix-commits, 2021/03/20
- 05/12: gnu: Add julia-benchmarktools.,
guix-commits <=
- 02/12: gnu-maintenance: Accept underscores as package/version separators., guix-commits, 2021/03/20
- 03/12: doc: Fix typo in julia-build-system., guix-commits, 2021/03/20
- 04/12: gnu: julia-adapt: Set file-name according to standards., guix-commits, 2021/03/20
- 06/12: gnu: Add julia-jllwrappers., guix-commits, 2021/03/20
- 08/12: gnu: Add julia-mbedtls., guix-commits, 2021/03/20
- 07/12: gnu: Add julia-mbedtls-jll., guix-commits, 2021/03/20
- 09/12: gnu: Add julia-uris., guix-commits, 2021/03/20
- 10/12: gnu: Add julia-inifile., guix-commits, 2021/03/20
- 11/12: gnu: Add julia-bufferedstreams., guix-commits, 2021/03/20
- 12/12: gnu: Add julia-http., guix-commits, 2021/03/20