mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-02 09:28:57 -05:00
gnu: Add rust-simba-0.8.
* gnu/packages/crates-io.scm (rust-simba-0.8): New variable. (rust-simba-0.6): Inherit from rust-simba-0.8.
This commit is contained in:
parent
38cbcdca8f
commit
db34ebed32
1 changed files with 38 additions and 8 deletions
|
@ -62612,8 +62612,45 @@ (define-public rust-signature-derive-1
|
|||
("rust-syn" ,rust-syn-1)
|
||||
("rust-synstructure" ,rust-synstructure-0.12))))))
|
||||
|
||||
(define-public rust-simba-0.8
|
||||
(package
|
||||
(name "rust-simba")
|
||||
(version "0.8.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "simba" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1bnf7ainywmaz2z67ss1q0bjwccf80c50c50r6hlpay69z4hf586"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-approx" ,rust-approx-0.5)
|
||||
("rust-cordic" ,rust-cordic-0.1)
|
||||
("rust-cuda-std" ,rust-cuda-std-0.2)
|
||||
("rust-cust-core" ,rust-cust-core-0.1)
|
||||
("rust-decimal" ,rust-decimal-2)
|
||||
("rust-fixed" ,rust-fixed-1)
|
||||
("rust-libm" ,rust-libm-0.2)
|
||||
("rust-num-complex" ,rust-num-complex-0.4)
|
||||
("rust-num-traits" ,rust-num-traits-0.2)
|
||||
("rust-packed-simd-2" ,rust-packed-simd-2-0.3)
|
||||
("rust-paste" ,rust-paste-1)
|
||||
("rust-rand" ,rust-rand-0.8)
|
||||
("rust-rkyv" ,rust-rkyv-0.7)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-wide" ,rust-wide-0.7))))
|
||||
(home-page "https://github.com/dimforge/simba")
|
||||
(synopsis "SIMD algebra for Rust")
|
||||
(description "This package provides a set of mathematical traits to
|
||||
facilitate the use of SIMD-based @dfn{Array of Struct of Array} (AoSoA) storage
|
||||
pattern in Rust.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public rust-simba-0.6
|
||||
(package
|
||||
(inherit rust-simba-0.8)
|
||||
(name "rust-simba")
|
||||
(version "0.6.0")
|
||||
(source
|
||||
|
@ -62624,7 +62661,6 @@ (define-public rust-simba-0.6
|
|||
(sha256
|
||||
(base32
|
||||
"0px0nncs3ki86pjcldz40mhvraywh7y9jypfcqqdcihs287q9dzh"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-approx" ,rust-approx-0.5)
|
||||
|
@ -62638,13 +62674,7 @@ (define-public rust-simba-0.6
|
|||
("rust-paste" ,rust-paste-1)
|
||||
("rust-rand" ,rust-rand-0.8)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-wide" ,rust-wide-0.7))))
|
||||
(home-page "https://github.com/dimforge/simba")
|
||||
(synopsis "SIMD algebra for Rust")
|
||||
(description "This package provides a set of mathematical traits to
|
||||
facilitate the use of SIMD-based @dfn{Array of Struct of Array} (AoSoA) storage
|
||||
pattern in Rust.")
|
||||
(license license:bsd-3)))
|
||||
("rust-wide" ,rust-wide-0.7))))))
|
||||
|
||||
(define-public rust-simba-0.5
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue