mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add rust-nalgebra-0.18.
* gnu/packages/crates-io.scm (rust-nalgebra-0.18): New variable.
This commit is contained in:
parent
f87fa00361
commit
4bf3167de2
1 changed files with 42 additions and 0 deletions
|
@ -10650,6 +10650,48 @@ (define-public rust-modifier-0.1
|
|||
"Chaining APIs for both self -> Self and &mut self methods.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-nalgebra-0.18
|
||||
(package
|
||||
(name "rust-nalgebra")
|
||||
(version "0.18.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "nalgebra" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"18i1npny8s45ff67p5qpdwwsn36fp23mal8847fkb32cqgdzvada"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-abomonation" ,rust-abomonation-0.7)
|
||||
("rust-alga" ,rust-alga-0.9)
|
||||
("rust-approx" ,rust-approx-0.3)
|
||||
("rust-generic-array" ,rust-generic-array-0.12)
|
||||
("rust-matrixmultiply" ,rust-matrixmultiply-0.2)
|
||||
("rust-mint" ,rust-mint-0.5)
|
||||
("rust-num-complex" ,rust-num-complex-0.2)
|
||||
("rust-num-rational" ,rust-num-rational-0.2)
|
||||
("rust-num-traits" ,rust-num-traits-0.2)
|
||||
("rust-pest" ,rust-pest-2.1)
|
||||
("rust-pest-derive" ,rust-pest-derive-2.1)
|
||||
("rust-quickcheck" ,rust-quickcheck-0.8)
|
||||
("rust-rand" ,rust-rand-0.6)
|
||||
("rust-serde" ,rust-serde-1.0)
|
||||
("rust-serde-derive" ,rust-serde-derive-1.0)
|
||||
("rust-typenum" ,rust-typenum-1.10))
|
||||
#:cargo-development-inputs
|
||||
(("rust-rand-xorshift" ,rust-rand-xorshift-0.1)
|
||||
("rust-serde-json" ,rust-serde-json-1.0))))
|
||||
(home-page "https://nalgebra.org")
|
||||
(synopsis "Linear algebra library")
|
||||
(description
|
||||
"This package provides a linear algebra library with transformations and
|
||||
statically-sized or dynamically-sized matrices.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public rust-named-pipe-0.4
|
||||
(package
|
||||
(name "rust-named-pipe")
|
||||
|
|
Loading…
Reference in a new issue