mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: Add rust-lapack-0.19.
* gnu/packages/crates-io.scm (rust-lapack-0.19): New variable. Change-Id: I2c32db5e4028432e030005c7ee16773d0f052d21
This commit is contained in:
parent
82f83cafb9
commit
95478222c0
1 changed files with 21 additions and 0 deletions
|
@ -33001,6 +33001,27 @@ (define-public rust-lapack-sys-0.14
|
|||
(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")
|
||||
|
|
Loading…
Reference in a new issue