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-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 <contact@conses.eu>
Co-authored-by: Miguel Ángel Moreno <mail@migalmoreno.com>
Change-Id: Ib04852a01023c90029071d77be37dcd1174630f3
This commit is contained in:
Sharlatan Hellseher 2025-02-13 13:26:00 +00:00
parent 12a671b1bc
commit 8d5281cbc9
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -16812,6 +16812,35 @@ written in Go, as well as some other related libraries like whatsmeow.")
fork of @code{github.com/chai2010/webp}.") fork of @code{github.com/chai2010/webp}.")
(license license:bsd-3))) (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 (define-public go-go-mongodb-org-mongo-driver
(package (package
(name "go-go-mongodb-org-mongo-driver") (name "go-go-mongodb-org-mongo-driver")