diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-11-11 13:02:31 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-11-11 15:39:18 +0000 |
commit | 0e5127c0aa934c9e90b09ca20de6b6dd6f23a942 (patch) | |
tree | a6a43ebf9ad5bd24cd19ffbfe54d0f13d88c3002 | |
parent | 7d00ffc8fc3bbe8d83cf370587fc6f623c37bcb4 (diff) |
gnu: Add rust-statrs-0.12.
* gnu/packages/crates-io.scm (rust-statrs-0.12): New variable.
-rw-r--r-- | gnu/packages/crates-io.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index a9363f8c2e..0509dddcc1 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -49990,6 +49990,27 @@ Rust.") Rust.") (license license:expat))) +(define-public rust-statrs-0.12 + (package + (name "rust-statrs") + (version "0.12.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "statrs" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "10hk9194ig21w08947yavf4l97g0106ph4xxlzn8ps2kwrnnzqfc")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-rand" ,rust-rand-0.7)))) + (home-page "https://github.com/statrs-dev/statrs") + (synopsis "Statistical computing library for Rust") + (description "This package provides a statistical computing library for +Rust.") + (license license:expat))) + (define-public rust-stb-truetype-0.3 (package (name "rust-stb-truetype") |