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:
Ricardo Wurmus 2024-04-29 10:09:42 +02:00
parent 82f83cafb9
commit 95478222c0
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -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")