diff options
author | Alexander_Kabui | 2025-03-04 23:55:40 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2025-03-05 11:41:22 +0300 |
commit | 3557f2207b9b1b8394b80235efad8cbdc9f6df94 (patch) | |
tree | 3623b079fafbf114fc08e7eaebd4c3e68cd32136 | |
parent | 4bfc73a9ed6fdde6bbae0abeb360c895b9f6ea4a (diff) | |
download | guix-bioinformatics-master.tar.gz |
* gn/packages/crate-io.scm (gn-rust-correlation): Update to d7b1fd6.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
-rw-r--r-- | gn/packages/crates-io.scm | 34 |
1 files changed, 15 insertions, 19 deletions
diff --git a/gn/packages/crates-io.scm b/gn/packages/crates-io.scm index ca276a5..276b713 100644 --- a/gn/packages/crates-io.scm +++ b/gn/packages/crates-io.scm @@ -690,32 +690,28 @@ or any combination.") (license license:gpl3+))) (define-public gn-rust-correlation - (let ((commit "a22381e9830bac9a6848449279d258397217e251") + (let ((commit "d7b1fd65814511890a4e606e6e610379b6d89393") (revision "0")) (package (name "gn-rust-correlation") (version (git-version "0.1.4" revision commit)) (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Alexanderlacuna/correlation_rust.git") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1cb197p8zmgxymzs9b7bygs0kg67809z6gc2svza909sxr9ac5ps")))) + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Alexanderlacuna/correlation_rust.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1z5p9pjja6a697l558axnp1hr5376b6ng3yl3vxcp2h1skfrykvq")))) (build-system cargo-build-system) - (native-inputs - (list gsl)) + (native-inputs (list gsl)) (arguments - `(#:cargo-inputs - (("rust-serde" ,rust-serde-1) - ("rust-serde-json" ,rust-serde-json-1) - ("GSL" ,rust-gsl) - ("rust-assert-approx-eq" ,rust-assert-approx-eq-1)) - #:cargo-development-inputs - (("rust-criterion" ,rust-criterion-0.3)))) + `(#:cargo-inputs (("rust-serde" ,rust-serde-1) + ("rust-serde-json" ,rust-serde-json-1) + ("GSL" ,rust-gsl) + ("rust-assert-approx-eq" ,rust-assert-approx-eq-1)) + #:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.3)))) (home-page "https://github.com/Alexanderlacuna/correlation_rust") (synopsis "Re-implementation of genenetwork/correlation in Rust") (description "Re-implementation of genenetwork/correlation in Rust") |