mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-02 16:17:27 +01:00
gnu: rust-sha1-smol-1: Update to 1.0.1.
* gnu/packages/crates-crypto.scm (rust-sha1-smol-1): Update to 1.0.1. [arguments]: Don't skip the build. [cargo-development-inputs]: Add rust-openssl-0.10, rust-rand-0.4, rust-serde-json-1. [native-inputs]: Add pkg-config. [inputs]: Add openssl. Change-Id: I87ee147ef145ce4fb66c1338f312d45e31c26d1c
This commit is contained in:
parent
4e0e5143af
commit
90209125f8
1 changed files with 8 additions and 4 deletions
|
@ -5776,18 +5776,22 @@ (define-public rust-sha1-asm-0.4
|
||||||
(define-public rust-sha1-smol-1
|
(define-public rust-sha1-smol-1
|
||||||
(package
|
(package
|
||||||
(name "rust-sha1-smol")
|
(name "rust-sha1-smol")
|
||||||
(version "1.0.0")
|
(version "1.0.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "sha1_smol" version))
|
(uri (crate-uri "sha1_smol" version))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"04nhbhvsk5ms1zbshs80iq5r1vjszp2xnm9f0ivj38q3dhc4f6mf"))))
|
"0pbh2xjfnzgblws3hims0ib5bphv7r5rfdpizyh51vnzvnribymv"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t
|
`(#:cargo-inputs (("rust-serde" ,rust-serde-1))
|
||||||
#:cargo-inputs (("rust-serde" ,rust-serde-1))))
|
#:cargo-development-inputs (("rust-openssl" ,rust-openssl-0.10)
|
||||||
|
("rust-rand" ,rust-rand-0.4)
|
||||||
|
("rust-serde-json" ,rust-serde-json-1))))
|
||||||
|
(native-inputs (list pkg-config))
|
||||||
|
(inputs (list openssl))
|
||||||
(home-page "https://github.com/mitsuhiko/sha1-smol")
|
(home-page "https://github.com/mitsuhiko/sha1-smol")
|
||||||
(synopsis "Dependency free SHA1 implementation")
|
(synopsis "Dependency free SHA1 implementation")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue