guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 47b3f7348b8a911d0a15f2d14ece76a4ff94abbb
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Feb 11 21:22:30 2026 +0000
gnu: Add go-github-com-eggsampler-acme-v3.
* gnu/packages/golang-web.scm (go-github-com-eggsampler-acme-v3): New
variable.
Change-Id: Ibd850bc991174f12d12f5a38b23fbee94b1f1636
---
gnu/packages/golang-web.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 908689d383..6f92949000 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -375,6 +375,36 @@ API service accounts for Go.")
transient error handling.")
(license license:bsd-2)))
+(define-public go-github-com-eggsampler-acme-v3
+ (package
+ (name "go-github-com-eggsampler-acme-v3")
+ (version "3.7.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/eggsampler/acme")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1ga5l4x1p16d2i4135gw97p0f3id1ip3gfg2ny0fp0p0l38lnii5"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:tests? #f ;network access is required
+ #:import-path "github.com/eggsampler/acme/v3"))
+ (home-page "https://github.com/eggsampler/acme")
+ (synopsis "Go client library implementation for ACME v2 (RFC8555)")
+ (description
+ "@code{eggsampler/acme} is a Go client library implementation for
+@url{https://tools.ietf.org/html/rfc8555, RFC8555} (previously ACME v2). This
+library can be used with the @url{https://letsencrypt.org/, Let's Encrypt}
+Certificate Authority (CA), but also other ACME compliant CA's such as
+@url{https://zerossl.com/, ZeroSSL}, @url{https://pki.goog/, Google Trust
+Services} and others listed at
+@url{https://acmeclients.com/certificate-authorities/}.")
+ (license license:expat)))
+
(define-public go-github-com-foxcpp-go-mockdns
(package
(name "go-github-com-foxcpp-go-mockdns")