3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add rust-sprs-0.10.

* gnu/packages/crates-io.scm (rust-sprs-0.10): New variable.
This commit is contained in:
Ricardo Wurmus 2022-09-20 16:33:10 +02:00
parent 76e6459722
commit f5483e2661
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -59401,6 +59401,40 @@ OIDs)")
(description "Simple SPMC channel")
(license (list license:expat license:asl2.0))))
(define-public rust-sprs-0.10
(package
(name "rust-sprs")
(version "0.10.0")
(source (origin
(method url-fetch)
(uri (crate-uri "sprs" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"18qwm1wnc1jbzdpl0wfrrybb6rak74zv8jmfg87id7ksb6crkz6r"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t ;8 test failures due to "No such file or directory"
#:cargo-inputs
(("rust-alga" ,rust-alga-0.9)
("rust-approx" ,rust-approx-0.3)
("rust-ndarray" ,rust-ndarray-0.14)
("rust-num-complex" ,rust-num-complex-0.2)
("rust-num-traits" ,rust-num-traits-0.2)
("rust-num-cpus" ,rust-num-cpus-1)
("rust-rayon" ,rust-rayon-1)
("rust-serde" ,rust-serde-1)
("rust-smallvec" ,rust-smallvec-1))
#:cargo-development-inputs
(("rust-bencher" ,rust-bencher-0.1)
("rust-bincode" ,rust-bincode-1)
("rust-tobj" ,rust-tobj-2))))
(home-page "https://github.com/vbarrielle/sprs")
(synopsis "Sparse matrix library")
(description "This package provides a sparse matrix library.")
;; Either license can be chosen
(license (list license:expat license:asl2.0))))
(define-public rust-rspotify-0.10
(package
(name "rust-rspotify")