me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-cookie-0.11.

* gnu/packages/crates-io.scm (rust-cookie-0.11): New variable.
master
Nicolas Goaziou 2021-02-10 11:03:10 +01:00
parent 50a135cfb1
commit ab4fdea89c
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 24 additions and 0 deletions

View File

@ -7336,6 +7336,30 @@ semantics than those provided by @code{as} or @code{From}/@code{Into}.")
It supports signed and private (encrypted + signed) jars.")
(license (list license:asl2.0 license:expat))))
(define-public rust-cookie-0.11
(package
(inherit rust-cookie-0.12)
(name "rust-cookie")
(version "0.11.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "cookie" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0i2x04kx1ifljsnwsa83k7cpmajk9j4ayyx2h11y6lkji6hcv5ap"))))
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-aes-gcm" ,rust-aes-gcm-0.5)
("rust-base64" ,rust-base64-0.12)
("rust-hkdf" ,rust-hkdf-0.8)
("rust-hmac" ,rust-hmac-0.7)
("rust-percent-encoding" ,rust-percent-encoding-2)
("rust-rand" ,rust-rand-0.7)
("rust-sha2" ,rust-sha2-0.8)
("rust-time" ,rust-time-0.1))))))
(define-public rust-cookie-store-0.7
(package
(name "rust-cookie-store")