guix_mirror_bot pushed a commit to branch master
in repository guix.
commit cabd5b3d4fd45867fca1ba7e8d73835d9de66333
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Feb 11 21:22:31 2026 +0000
gnu: Add go-github-com-letsencrypt-pkcs11key-v4.
* gnu/packages/golang-crypto.scm (go-github-com-letsencrypt-pkcs11key-v4):
New variable.
Change-Id: I2c7d02c0c94eb7e6379f66e2ff62147103fa38f3
---
gnu/packages/golang-crypto.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index d36186c3e5..f3f07c8cc4 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -1684,6 +1684,32 @@ cryptographic hash as specified in
hash.")
(license license:expat)))
+(define-public go-github-com-letsencrypt-pkcs11key-v4
+ (package
+ (name "go-github-com-letsencrypt-pkcs11key-v4")
+ (version "4.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/letsencrypt/pkcs11key")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1ynmw2zhsr1m880clc2hgmc53cx6b69wdcjddw9pz0sysddnpb81"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:tests? #f ;they require local cert setup, see test.sh.
+ #:import-path "github.com/letsencrypt/pkcs11key/v4"))
+ (propagated-inputs
+ (list go-github-com-miekg-pkcs11))
+ (home-page "https://github.com/letsencrypt/pkcs11key")
+ (synopsis "Interface to PKCS#11 devices for Golang")
+ (description
+ "This package implements @code{crypto.Signer} for PKCS #11 private keys.")
+ (license license:bsd-2)))
+
(define-public go-github-com-libp2p-go-libp2p-crypto
(let ((commit "7240b40a3ddc47c4d17c15baabcbe45e5219171b")
(revision "0"))