me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-wide-0.4.

* gnu/packages/crates-io.scm (rust-wide-0.4): New variable.
master
Efraim Flashner 2020-10-04 23:58:36 +03:00
parent 0e648f6a5e
commit 169317d61d
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 0 deletions

View File

@ -30456,6 +30456,31 @@ Locate installed executable in cross platforms.")
#:cargo-development-inputs
(("rust-tempdir" ,rust-tempdir-0.3))))))
(define-public rust-wide-0.4
(package
(name "rust-wide")
(version "0.4.6")
(source
(origin
(method url-fetch)
(uri (crate-uri "wide" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0ad75vnzygj8qfcl1l9n4wi93xmqzvhqlpqn4hfayrwbn6wa69aq"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-bytemuck" ,rust-bytemuck-1))))
(home-page "https://github.com/Lokathor/wide")
(synopsis "Rust for wide blocks")
(description "This crate has data types for blocks of primitives packed
together and used as a single unit. This works very well with SIMD/vector
hardware of various targets. Both in terms of explicit SIMD usage and also in
terms of allowing LLVM's auto-vectorizer to do its job.")
(license license:zlib)))
(define-public rust-widestring-0.4
(package
(name "rust-widestring")