gnu: Add go-github-com-zitadel-logging.

* gnu/packages/golang-xyz.scm (go-github-com-zitadel-logging): New variable.

Change-Id: I5c08e7cdf532439110e230355aa4784c44af11a7
This commit is contained in:
Sharlatan Hellseher 2025-07-07 12:00:23 +01:00
parent 111229c1a8
commit 906b1ef5e9
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -18635,6 +18635,34 @@ configuration languages, but other uses may be possible too.")
utilities for cty Golang module.")
(license license:expat)))
(define-public go-github-com-zitadel-logging
(package
(name "go-github-com-zitadel-logging")
(version "0.6.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/zitadel/logging")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "04rrp9dhda78z8nidahhix1d2cn26fybk1vqmvnb89savadxqzzw"))))
(build-system go-build-system)
(arguments
(list
#:go go-1.24
#:import-path "github.com/zitadel/logging"))
(native-inputs
(list go-github-com-stretchr-testify
go-gopkg-in-yaml-v2))
(propagated-inputs
(list go-github-com-sirupsen-logrus))
(home-page "https://github.com/zitadel/logging")
(synopsis "Logging extension for Golang")
(description "This package implements an alternative logging extension.")
(license license:asl2.0)))
(define-public go-github-com-zitadel-schema
(package
(name "go-github-com-zitadel-schema")