mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 20:57:12 -05:00
gnu: Add rust-sha1-asm-0.5.
* gnu/packages/crates-io.scm (rust-sha1-asm-0.5): New variable. (rust-sha1-asm-0.4): Inherit from above. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
c63079c1a9
commit
b5604a827b
1 changed files with 25 additions and 10 deletions
|
@ -50064,8 +50064,32 @@ (define-public rust-sha1-0.2
|
||||||
((", path =.*}") "}"))
|
((", path =.*}") "}"))
|
||||||
#t)))))))
|
#t)))))))
|
||||||
|
|
||||||
|
(define-public rust-sha1-asm-0.5
|
||||||
|
(package
|
||||||
|
(name "rust-sha1-asm")
|
||||||
|
(version "0.5.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "sha1-asm" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1b7ab7f4n87pqdmbl1a5jrc2axf27pvbndsz9qiwwgxw01qlygan"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-cc" ,rust-cc-1))))
|
||||||
|
(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-sha1-asm-0.4
|
(define-public rust-sha1-asm-0.4
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-sha1-asm-0.5)
|
||||||
(name "rust-sha1-asm")
|
(name "rust-sha1-asm")
|
||||||
(version "0.4.3")
|
(version "0.4.3")
|
||||||
(source
|
(source
|
||||||
|
@ -50076,16 +50100,7 @@ (define-public rust-sha1-asm-0.4
|
||||||
(string-append name "-" version ".tar.gz"))
|
(string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1i1i8viy6y30mv9v5hwhg9w6b722qkyh9c6n8bn4d27jpv14pg0s"))))
|
"1i1i8viy6y30mv9v5hwhg9w6b722qkyh9c6n8bn4d27jpv14pg0s"))))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:cargo-inputs
|
|
||||||
(("rust-cc" ,rust-cc-1))))
|
|
||||||
(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-sha1collisiondetection-0.2
|
(define-public rust-sha1collisiondetection-0.2
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue