1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: Add go-github-com-caddyserver-zerossl.

* gnu/packages/golang-web.scm (go-github-com-caddyserver-zerossl): New variable.

Change-Id: Ibec80ae2d4d86f99f8bc271a1c4dfd2591d66290
Reviewed-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Artyom V. Poptsov 2024-11-14 21:38:00 +03:00
parent 2fec407b27
commit 507c9da4e6
No known key found for this signature in database
GPG key ID: 935EBE0736DC857E

View file

@ -641,6 +641,33 @@ Manager,NTLM}/Negotiate authentication over HTTP.")
"This package provides SCSS compiler support for Go applications.")
(license license:expat)))
(define-public go-github-com-caddyserver-zerossl
(package
(name "go-github-com-caddyserver-zerossl")
(version "0.1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/caddyserver/zerossl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0hr2kdabhm35hz5krp7m3g6wxvyb9xlqgmy3krf4wwb3yabsqp1m"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/caddyserver/zerossl"))
(home-page "https://github.com/caddyserver/zerossl")
(synopsis "ZeroSSL REST API client implementation for Go")
(description
"@code{zerossl} implements the @url{https://zerossl.com/documentation/api/,
ZeroSSL REST API}.
The REST API is distinct from the @url{https://zerossl.com/documentation/acme/, ACME
endpoint}, which is a standardized way of obtaining certificates.")
(license license:expat)))
(define-public go-github-com-ccding-go-stun
(package
(name "go-github-com-ccding-go-stun")