diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 13:31:24 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 13:31:24 -0600 |
commit | b853acffd39d609a32359333befa88f1d9f2c956 (patch) | |
tree | f868de58749eeb987235709408c16ddacb255834 /unlustig.scm | |
parent | 52d9fa8ab0e4221e4002cd1354eb1469c1a1dd80 (diff) | |
download | guix-msglm-b853acffd39d609a32359333befa88f1d9f2c956.tar.gz guix-msglm-b853acffd39d609a32359333befa88f1d9f2c956.tar.bz2 guix-msglm-b853acffd39d609a32359333befa88f1d9f2c956.zip |
add rust-criterion-plot@0.4
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index fd258a2..e41a6ff 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1264,3 +1264,26 @@ binding to JVM APIs from Rust.") "This package provides Statistics-driven micro-benchmarking library.") (license (list license:asl2.0 license:expat)))) +(define-public rust-criterion-plot-0.4 + (package + (name "rust-criterion-plot") + (version "0.4.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "criterion-plot" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0xhq0jz1603585h7xvm3s4x9irmifjliklszbzs4cda00y1cqwr6")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-cast" ,rust-cast-0.3) + ("rust-itertools" ,rust-itertools-0.10)) + #:cargo-development-inputs (("rust-itertools-num" ,rust-itertools-num-0.1) + ("rust-num-complex" ,rust-num-complex-0.4) + ("rust-rand" ,rust-rand-0.8)))) + (home-page "https://github.com/bheisler/criterion.rs") + (synopsis "Criterion's plotting library") + (description "This package provides Criterion's plotting library.") + (license (list license:expat license:asl2.0)))) + |