me
/
guix
Archived
1
0
Fork 0

gnu: rust-crypto-common: Update to 0.1.6.

* gnu/packages/crates-io.scm (rust-crypto-common-0.1): Update to 0.1.6.
[arguments]: Add RUST-TYPENUM to #:cargo-inputs.
master
Marius Bakke 2022-12-02 20:49:37 +01:00 committed by Maxim Cournoyer
parent 540871ba8c
commit d4869c846d
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 16 additions and 14 deletions

View File

@ -14195,24 +14195,26 @@ using const generics.")
(define-public rust-crypto-common-0.1 (define-public rust-crypto-common-0.1
(package (package
(name "rust-crypto-common") (name "rust-crypto-common")
(version "0.1.1") (version "0.1.6")
(source (source (origin
(origin (method url-fetch)
(method url-fetch) (uri (crate-uri "crypto-common" version))
(uri (crate-uri "crypto-common" version)) (file-name (string-append name "-" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz")) (sha256
(sha256 (base32
(base32 "1l4q4ync13i056vjc775v0za8qh987da7yvrjj25q909cd9nngb8")))) "1cvby95a6xg7kxdz5ln3rl9xh66nz66w46mm3g56ri1z5x815yqv"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(#:skip-build? `(#:cargo-inputs
#t (("rust-generic-array" ,rust-generic-array-0.14)
#:cargo-inputs ("rust-rand-core" ,rust-rand-core-0.6)
(("rust-generic-array" ,rust-generic-array-0.14) ("rust-typenum" ,rust-typenum-1))))
("rust-rand-core" ,rust-rand-core-0.6))))
(home-page "https://github.com/RustCrypto/traits") (home-page "https://github.com/RustCrypto/traits")
(synopsis "Common cryptographic traits") (synopsis "Common cryptographic traits")
(description "Common cryptographic traits") (description
"This package contains a collection of traits which describe functionality
of cryptographic primitives.")
;; The user can choose either license.
(license (list license:expat license:asl2.0)))) (license (list license:expat license:asl2.0))))
(define-public rust-crypto-mac-0.11 (define-public rust-crypto-mac-0.11