mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
gnu: Add rust-sha1-asm-0.4.
* gnu/packages/crates-io.scm (rust-sha1-asm-0.4): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
31e4305fd6
commit
1885a4f1e2
1 changed files with 24 additions and 0 deletions
|
@ -6522,6 +6522,30 @@ (define-public rust-sha1-0.6
|
|||
"Minimal implementation of SHA1 for Rust.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public rust-sha1-asm-0.4
|
||||
(package
|
||||
(name "rust-sha1-asm")
|
||||
(version "0.4.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "sha1-asm" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1i1i8viy6y30mv9v5hwhg9w6b722qkyh9c6n8bn4d27jpv14pg0s"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-development-inputs
|
||||
(("rust-cc" ,rust-cc-1.0))))
|
||||
(home-page "https://github.com/RustCrypto/asm-hashes")
|
||||
(synopsis "Assembly implementation of SHA-1 compression function")
|
||||
(description
|
||||
"Assembly implementation of SHA-1 compression function.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-shlex-0.1
|
||||
(package
|
||||
(name "rust-shlex")
|
||||
|
|
Loading…
Reference in a new issue