mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 23:32:24 -05:00
gnu: Add rust-fake-simd-0.1.
* gnu/packages/crates-io.scm (rust-fake-simd-0.1): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
98ad8786d2
commit
061eda1ec4
1 changed files with 21 additions and 0 deletions
|
@ -2056,6 +2056,27 @@ (define-public rust-erased-serde-0.3
|
||||||
"Type-erased Serialize and Serializer traits.")
|
"Type-erased Serialize and Serializer traits.")
|
||||||
(license (list license:asl2.0 license:expat))))
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-fake-simd-0.1
|
||||||
|
(package
|
||||||
|
(name "rust-fake-simd")
|
||||||
|
(version "0.1.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "fake-simd" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1vfylvk4va2ivqx85603lyqqp0zk52cgbs4n5nfbbbqx577qm2p8"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments `(#:skip-build? #t))
|
||||||
|
(home-page "https://github.com/RustCrypto/utils")
|
||||||
|
(synopsis "Crate for mimicking simd crate on stable Rust")
|
||||||
|
(description
|
||||||
|
"Crate for mimicking simd crate on stable Rust.")
|
||||||
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
(define-public rust-failure-0.1
|
(define-public rust-failure-0.1
|
||||||
(package
|
(package
|
||||||
(name "rust-failure")
|
(name "rust-failure")
|
||||||
|
|
Loading…
Reference in a new issue