me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-crypto-mac-0.8.

* gnu/packages/crates-io.scm (rust-crypto-mac-0.8): New variable.
(rust-crypto-mac-0.7): Inherit from rust-crypto-mac-0.8.
Efraim Flashner 2020-06-28 14:23:37 +03:00
parent a825365538
commit 526badd606
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 27 additions and 7 deletions

View File

@ -4417,8 +4417,34 @@ manipulating terminals.")
around common WinAPI calls.")
(license license:expat)))
(define-public rust-crypto-mac-0.8
(package
(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
"1axfs4zmy74rn9666p92j7nmcv11zdp2d51yrppc2dv26cqa715m"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-blobby" ,rust-blobby-0.1)
("rust-generic-array" ,rust-generic-array-0.14)
("rust-subtle" ,rust-subtle-2))))
(home-page "https://github.com/RustCrypto/traits")
(synopsis "Trait for Message Authentication Code (MAC) algorithms")
(description "This package provides trait for @dfn{Message Authentication
Code} (MAC) algorithms.")
(license (list license:expat license:asl2.0))))
(define-public rust-crypto-mac-0.7
(package
(inherit rust-crypto-mac-0.8)
(name "rust-crypto-mac")
(version "0.7.0")
(source
@ -4430,17 +4456,11 @@ around common WinAPI calls.")
(sha256
(base32
"1rbrq6qy9dl0pj4ym2zy33miaaa8vpzdss60p9bdb58xy46l0d24"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-blobby" ,rust-blobby-0.1)
("rust-generic-array" ,rust-generic-array-0.12)
("rust-subtle" ,rust-subtle-1.0))))
(home-page "https://github.com/RustCrypto/traits")
(synopsis "Trait for Message Authentication Code (MAC) algorithms")
(description "This package provides trait for @dfn{Message Authentication
Code} (MAC) algorithms.")
(license (list license:expat license:asl2.0))))
("rust-subtle" ,rust-subtle-1.0))))))
(define-public rust-cssparser-0.25
(package