me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-webpki-0.19.

* gnu/packages/crates-io.scm (rust-webpki-0.19): New variable.
master
Efraim Flashner 2020-11-22 13:21:30 +02:00
parent 2d174ee65f
commit c69c0265f6
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 0 deletions

View File

@ -32609,6 +32609,28 @@ attribute that is not in the shared backend crate.")
Verification.") Verification.")
(license license:isc))) (license license:isc)))
(define-public rust-webpki-0.19
(package
(inherit rust-webpki-0.21)
(name "rust-webpki")
(version "0.19.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "webpki" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"10nhyxlqsa4caxlxrijm5h79rdg6ld8hqy78ldjnnfhaj3biqzjg"))))
(arguments
`(#:tests? #f ; tests fail to build "missing file tests/ed25519/ee.der"
#:cargo-inputs
(("rust-ring" ,rust-ring-0.14)
("rust-untrusted" ,rust-untrusted-0.6))
#:cargo-development-inputs
(("rust-base64" ,rust-base64-0.9))))))
(define-public rust-webpki-0.18 (define-public rust-webpki-0.18
(package/inherit rust-webpki-0.21 (package/inherit rust-webpki-0.21
(name "rust-webpki") (name "rust-webpki")