mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
gnu: Add rust-blake2b-simd-0.5.
* gnu/packages/crates-io.scm (rust-blake2b-simd-0.5): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
5624b4292d
commit
f8607be8a8
1 changed files with 27 additions and 0 deletions
|
@ -807,6 +807,33 @@ (define-public rust-blake2-rfc-0.2
|
|||
7693.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-blake2b-simd-0.5
|
||||
(package
|
||||
(name "rust-blake2b-simd")
|
||||
(version "0.5.10")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "blake2b-simd" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"12icvk8ixlivv3jv5nyrg01sajp4s279zb1kmif0nfja4ms2vyyq"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-arrayref" ,rust-arrayref-0.3)
|
||||
("rust-arrayvec" ,rust-arrayvec-0.5)
|
||||
("rust-constant-time-eq" ,rust-constant-time-eq-0.1))))
|
||||
(home-page "https://github.com/oconnor663/blake2_simd")
|
||||
(synopsis "Pure Rust BLAKE2b implementation with dynamic SIMD")
|
||||
(description
|
||||
"This package provides a pure Rust implementation of the BLAKE2b and
|
||||
BLAKE2bp hash functions.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-blas-sys-0.7
|
||||
(package
|
||||
(name "rust-blas-sys")
|
||||
|
|
Loading…
Reference in a new issue