gnu: Add rust-crypto-mac-0.10.
* gnu/packages/crates-io.scm (rust-crypto-mac-0.10): New variable. (rust-crypto-mac-0.8) Inherit from rust-crypto-mac-0.10.master
parent
5fb1ad6e57
commit
4c640083f5
|
@ -7588,10 +7588,10 @@ manipulating terminals.")
|
||||||
around common WinAPI calls.")
|
around common WinAPI calls.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-crypto-mac-0.8
|
(define-public rust-crypto-mac-0.10
|
||||||
(package
|
(package
|
||||||
(name "rust-crypto-mac")
|
(name "rust-crypto-mac")
|
||||||
(version "0.8.0")
|
(version "0.10.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -7599,20 +7599,41 @@ around common WinAPI calls.")
|
||||||
(file-name
|
(file-name
|
||||||
(string-append name "-" version ".tar.gz"))
|
(string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "19iyh7h9qaqrv29dhbd31rm6pq023ry78nw7jwr3qjy3l22zsms8"))))
|
||||||
"1axfs4zmy74rn9666p92j7nmcv11zdp2d51yrppc2dv26cqa715m"))))
|
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:skip-build? #t
|
||||||
(("rust-blobby" ,rust-blobby-0.1)
|
#:cargo-inputs
|
||||||
("rust-generic-array" ,rust-generic-array-0.14)
|
(("rust-blobby" ,rust-blobby-0.3)
|
||||||
("rust-subtle" ,rust-subtle-2))))
|
("rust-cipher" ,rust-cipher-0.2)
|
||||||
|
("rust-generic-array" ,rust-generic-array-0.14)
|
||||||
|
("rust-subtle" ,rust-subtle-2))))
|
||||||
(home-page "https://github.com/RustCrypto/traits")
|
(home-page "https://github.com/RustCrypto/traits")
|
||||||
(synopsis "Trait for Message Authentication Code (MAC) algorithms")
|
(synopsis "Trait for Message Authentication Code (MAC) algorithms")
|
||||||
(description "This package provides trait for @dfn{Message Authentication
|
(description "This package provides trait for @dfn{Message Authentication
|
||||||
Code} (MAC) algorithms.")
|
Code} (MAC) algorithms.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-crypto-mac-0.8
|
||||||
|
(package
|
||||||
|
(inherit rust-crypto-mac-0.10)
|
||||||
|
(name "rust-crypto-mac")
|
||||||
|
(version "0.8.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "crypto-mac" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1rbrq6qy9dl0pj4ym2zy33miaaa8vpzdss60p9bdb58xy46l0d24"))))
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-blobby" ,rust-blobby-0.1)
|
||||||
|
("rust-generic-array" ,rust-generic-array-0.14)
|
||||||
|
("rust-subtle" ,rust-subtle-2))))))
|
||||||
|
|
||||||
(define-public rust-crypto-mac-0.7
|
(define-public rust-crypto-mac-0.7
|
||||||
(package
|
(package
|
||||||
(inherit rust-crypto-mac-0.8)
|
(inherit rust-crypto-mac-0.8)
|
||||||
|
|
Reference in New Issue