guix_mirror_bot pushed a commit to branch go-team in repository guix. commit 0d9978176d1c3c7d1dc38476b47affe3ed6239ca Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Tue Jun 10 15:28:20 2025 +0100
gnu: Add go-github-com-letsencrypt-challtestsrv. * gnu/packages/golang-web.scm (go-github-com-letsencrypt-challtestsrv): New variable. Change-Id: I7dfab0b5ddf2ca88937643c7f7e9a3f838a309c5 --- gnu/packages/golang-web.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index c151c1bb2b..9fa7a4816d 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -5378,6 +5378,32 @@ Features: @end itemize") (license license:expat))) +(define-public go-github-com-letsencrypt-challtestsrv + (package + (name "go-github-com-letsencrypt-challtestsrv") + (version "1.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/letsencrypt/challtestsrv") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03g5bvifxijhg9kw4qrs3x3h48m6q6s9a14w7172s1mwshmyr0wi")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/letsencrypt/challtestsrv")) + (propagated-inputs + (list go-github-com-miekg-dns)) + (home-page "https://github.com/letsencrypt/challtestsrv") + (synopsis "Challenge Test Server") + (description + "Package challtestsrv provides a trivially insecure acme challenge response +server for rapidly testing HTTP-01, DNS-01 and TLS-ALPN-01 challenge types.") + (license license:mpl2.0))) + (define-public go-github-com-levigross-grequests (package (name "go-github-com-levigross-grequests")