gnu: rust-md-5-0.10: Update to 0.10.6.
* gnu/packages/crates-crypto.scm (rust-md-5-0.10): Update to 0.10.6. [arguments]: Don't skip the build. [cargo-inputs]: Add rust-cfg-if-1. [cargo-development-inputs]: Add rust-digest-0.10, rust-hex-literal-0.2. Change-Id: I6995a21e54cb618b1c753930ce6240cffe3c053amaster
parent
aafe2e98e4
commit
f830d62101
|
@ -2,7 +2,7 @@
|
||||||
;;; Copyright © 2019, 2020 John Soo <jsoo1@asu.edu>
|
;;; Copyright © 2019, 2020 John Soo <jsoo1@asu.edu>
|
||||||
;;; Copyright © 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
;;; Copyright © 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||||
;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
|
;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
;;; Copyright © 2020, 2022, 2023 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2020, 2022-2024 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2020 Valentin Ignatev <valentignatev@gmail.com>
|
;;; Copyright © 2020 Valentin Ignatev <valentignatev@gmail.com>
|
||||||
;;; Copyright © 2021 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2021 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
|
;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
|
||||||
|
@ -2635,20 +2635,21 @@ be used to implement arbitrary protocols.")
|
||||||
(define-public rust-md-5-0.10
|
(define-public rust-md-5-0.10
|
||||||
(package
|
(package
|
||||||
(name "rust-md-5")
|
(name "rust-md-5")
|
||||||
(version "0.10.5")
|
(version "0.10.6")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "md-5" version))
|
(uri (crate-uri "md-5" version))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1jmrykh705dfclkgxwjysj5y8l1nyrn1gddw5xpgyjyla1l50rb3"))))
|
"1kvq5rnpm4fzwmyv5nmnxygdhhb2369888a06gdc9pxyrzh7x7nq"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t
|
`(#:cargo-inputs (("rust-cfg-if" ,rust-cfg-if-1)
|
||||||
#:cargo-inputs
|
("rust-digest" ,rust-digest-0.10)
|
||||||
(("rust-digest" ,rust-digest-0.10)
|
("rust-md5-asm" ,rust-md5-asm-0.5))
|
||||||
("rust-md5-asm" ,rust-md5-asm-0.5))))
|
#:cargo-development-inputs (("rust-digest" ,rust-digest-0.10)
|
||||||
|
("rust-hex-literal" ,rust-hex-literal-0.2))))
|
||||||
(home-page "https://github.com/RustCrypto/hashes")
|
(home-page "https://github.com/RustCrypto/hashes")
|
||||||
(synopsis "MD5 hash function")
|
(synopsis "MD5 hash function")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue