dannym pushed a commit to branch master
in repository guix.

commit 4210f4ce5fce98d54bdd6b16a48642a6b5cf8ec7
Author: Danny Milosavljevic <dan...@friendly-machines.com>
AuthorDate: Mon May 19 02:19:02 2025 +0200

    gnu: rust-webpki-roots: Update to 1.0.0.
    
    * gnu/packages/crates-web.scm (rust-webpki-roots-1): New variable.
    
    Change-Id: I4790cad0ab9f0771f9e6c3deb31916603b3e2641
---
 gnu/packages/crates-web.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/crates-web.scm b/gnu/packages/crates-web.scm
index 7ed571a384..2c43f67be5 100644
--- a/gnu/packages/crates-web.scm
+++ b/gnu/packages/crates-web.scm
@@ -8641,6 +8641,27 @@ Verification.")
 self-signed X.509 format for use with crates other than webpki.")
     (license license:mpl2.0)))
 
+(define-public rust-webpki-roots-1
+  (package
+    (name "rust-webpki-roots")
+    (version "1.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "webpki-roots" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1nyg365shpxkbazrsvh9c4cv7ar16xnfq62w48xdmwn43j6p6lr8"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs (("rust-rustls-pki-types" ,rust-rustls-pki-types-1))))
+    (home-page "https://github.com/rustls/webpki-roots";)
+    (synopsis "Mozilla's CA root certificates for use with webpki")
+    (description "This package provides Mozilla's CA root certificates for use
+with webpki.")
+    (license license:mpl2.0)))
+
 (define-public rust-webpki-roots-0.26
   (package
     (name "rust-webpki-roots")

Reply via email to