diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-04-29 10:09:42 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-05-05 22:38:15 +0200 |
commit | 95478222c05429c53be32a2e4c5ba7c9e8dfa8b0 (patch) | |
tree | d68427046aff162bbc83481a75a83a3c5cb47a1d | |
parent | 82f83cafb9087dc3ed3bfe1e94132c8bd2605f00 (diff) | |
download | guix-95478222c05429c53be32a2e4c5ba7c9e8dfa8b0.tar.gz guix-95478222c05429c53be32a2e4c5ba7c9e8dfa8b0.zip |
gnu: Add rust-lapack-0.19.
* gnu/packages/crates-io.scm (rust-lapack-0.19): New variable.
Change-Id: I2c32db5e4028432e030005c7ee16773d0f052d21
-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 650f3650e6..e82575aa98 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -33001,6 +33001,27 @@ generated by LALRPOP.") (description "The package provides bindings to LAPACK (Fortran).") (license (list license:asl2.0 license:expat)))) +(define-public rust-lapack-0.19 + (package + (name "rust-lapack") + (version "0.19.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "lapack" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "01yja6fdjr7h6nqhlamn0mhqv5533735030av2gnmrzp9mmnlrxd")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-lapack-sys" ,rust-lapack-sys-0.14) + ("rust-libc" ,rust-libc-0.2) + ("rust-num-complex" ,rust-num-complex-0.4)))) + (home-page "https://github.com/blas-lapack-rs/lapack") + (synopsis "Rust wrappers for LAPACK (Fortran)") + (description "The package provides wrappers for LAPACK (Fortran).") + (license (list license:asl2.0 license:expat)))) + (define-public rust-lazy-bytes-cast-5 (package (name "rust-lazy-bytes-cast") |