guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 4b8de8215d4b5bf9a2b3d937fa48736b36aec7a0
Author: Cayetano Santos <[email protected]>
AuthorDate: Mon Mar 9 14:10:46 2026 +0100

    gnu: pkcs11-provider: Update to 1.2.0.
    
    * gnu/packages/security-token.scm (pkcs11-provider): Update to 1.2.0.
    [source]: Switch to git-fetch.
    
    Change-Id: I57f72a35300009b4974e229be16b698a9c33053c
---
 gnu/packages/security-token.scm | 20 +++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/security-token.scm b/gnu/packages/security-token.scm
index 0f068754ce..55dc1f41af 100644
--- a/gnu/packages/security-token.scm
+++ b/gnu/packages/security-token.scm
@@ -407,15 +407,17 @@ semi-transparent way.
 (define-public pkcs11-provider
   (package
     (name "pkcs11-provider")
-    (version "1.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/latchset/"; name
-                                  "/releases/download/v" version "/"
-                                  name "-" version ".tar.xz"))
-              (sha256
-               (base32
-                "0lzn2wj3pxwb0b2xrx1dk96nkbm2bpl75clhkr1cpnfnc3v02gc4"))))
+    (version "1.2.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/latchset/pkcs11-provider/";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "1k4hcdh748x4lyrb1gq69wm28909d0qw6rb2fpxhxsd07k0mxpi4"))))
     (build-system meson-build-system)
     (arguments
      (list #:phases

Reply via email to