mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-07 03:44:06 -05:00
gnu: Add rust-blake2b-simd-1.
* gnu/packages/crates-io.scm (rust-blake2b-simd-1): New variable. (rust-blake2b-simd-0.5): Inherit from rust-blake2b-simd-1.
This commit is contained in:
parent
1e48856430
commit
53feddf97b
1 changed files with 26 additions and 8 deletions
|
@ -7872,8 +7872,33 @@ (define-public rust-blake2-0.8
|
|||
(description "This package provides BLAKE2 hash functions in Rust.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-blake2b-simd-1
|
||||
(package
|
||||
(name "rust-blake2b-simd")
|
||||
(version "1.0.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "blake2b-simd" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1g04mc4gf6jyymyj41749jhhplm3ymnc6z7rhkc1fqwclv4hsbrw"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-arrayref" ,rust-arrayref-0.3)
|
||||
("rust-arrayvec" ,rust-arrayvec-0.7)
|
||||
("rust-constant-time-eq" ,rust-constant-time-eq-0.2))))
|
||||
(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-blake2b-simd-0.5
|
||||
(package
|
||||
(inherit rust-blake2b-simd-1)
|
||||
(name "rust-blake2b-simd")
|
||||
(version "0.5.10")
|
||||
(source
|
||||
|
@ -7885,19 +7910,12 @@ (define-public rust-blake2b-simd-0.5
|
|||
(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)))
|
||||
("rust-constant-time-eq" ,rust-constant-time-eq-0.1))))))
|
||||
|
||||
(define-public rust-blakeout-0.3
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue