diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-12-24 09:58:52 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2025-01-06 12:16:08 +0200 |
commit | 6a318724038363b13dd7bd82ef5d60b253992c9b (patch) | |
tree | 771094cc8a1ccbf4f4cd84c77b6adcf86b5160f9 /gnu/packages/crates-web.scm | |
parent | 6b01d226e9b4c3852a79edd6bd30448fe67c6f6a (diff) |
gnu: Add rust-webpki-root-certs-0.26.
* gnu/packages/crates-web.scm (rust-webpki-root-certs-0.26): New
variable.
Change-Id: I112693bc196c28a8f478df7ea419c514e886ff98
Diffstat (limited to 'gnu/packages/crates-web.scm')
-rw-r--r-- | gnu/packages/crates-web.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/crates-web.scm b/gnu/packages/crates-web.scm index b2d2793e8f..b43fadd819 100644 --- a/gnu/packages/crates-web.scm +++ b/gnu/packages/crates-web.scm @@ -8061,6 +8061,36 @@ Verification.") #:cargo-development-inputs (("rust-base64" ,rust-base64-0.9)))))) +(define-public rust-webpki-root-certs-0.26 + (package + (name "rust-webpki-root-certs") + (version "0.26.7") + (source + (origin + (method url-fetch) + (uri (crate-uri "webpki-root-certs" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0p15xwdlibwqlmkqjb6qqikypyxqb0lwxf70rxa01wzipm4xmmcw")))) + (build-system cargo-build-system) + (arguments + (list #:tests? #f ; use of undeclared crate or module `webpki_ccadb` + #:cargo-inputs + (list rust-rustls-pki-types-1) + #:cargo-development-inputs + (list rust-hex-0.4 + rust-percent-encoding-2 + rust-ring-0.17 + rust-rustls-webpki-0.102 + rust-tokio-1 + rust-x509-parser-0.16))) + (home-page "https://github.com/rustls/webpki-roots") + (synopsis "Mozilla trusted certificate authorities in self-signed X.509 format") + (description + "This package provides Mozilla trusted certificate authorities in +self-signed X.509 format for use with crates other than webpki.") + (license license:mpl2.0))) + (define-public rust-webpki-roots-0.26 (package (name "rust-webpki-roots") |