sharlatan pushed a commit to branch go-team
in repository guix.
commit 0d03a6c6a0c00bdce27b7cedcf4ff723fe907a44
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Feb 13 13:26:00 2025 +0000
gnu: Add go-go-mau-fi-zeroconfig.
It was proposed in #62284 on <2023-03-20>.
* gnu/packages/golang-xyz.scm (go-go-mau-fi-zeroconfig): New variable.
Co-authored-by: conses <[email protected]>
Co-authored-by: Miguel Ángel Moreno <[email protected]>
Change-Id: Ib04852a01023c90029071d77be37dcd1174630f3
---
gnu/packages/golang-xyz.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 826aafb572..e918044683 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -16754,6 +16754,35 @@ written in Go, as well as some other related libraries
like whatsmeow.")
fork of @code{github.com/chai2010/webp}.")
(license license:bsd-3)))
+(define-public go-go-mau-fi-zeroconfig
+ (package
+ (name "go-go-mau-fi-zeroconfig")
+ (version "0.1.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/tulir/zeroconfig")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0zi5jbrlvsmpiq6ph8mh2360f5chdpy69ykrlmycbm5518wigz2c"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "go.mau.fi/zeroconfig"))
+ (propagated-inputs
+ (list go-github-com-rs-zerolog
+ go-github-com-stretchr-testify
+ go-gopkg-in-natefinch-lumberjack-v2))
+ (home-page "https://go.mau.fi/zeroconfig")
+ (synopsis "Declarative config format for zerolog")
+ (description
+ "This package provides a relatively simple declarative config format for
+@url{https://github.com/rs/zerolog, zerolog} supporting configuration files
+written in YAML or JSON.")
+ (license license:mpl2.0)))
+
(define-public go-go-mongodb-org-mongo-driver
(package
(name "go-go-mongodb-org-mongo-driver")