diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-07 12:00:23 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-22 20:13:01 +0100 |
commit | 906b1ef5e9caf364c0331a0609c6c5adbf6664a5 (patch) | |
tree | 6e3a87ab47fcd1a2e38f370c1649d9502d883583 /gnu/packages/golang-xyz.scm | |
parent | 111229c1a842d9be291d581bdbbd48ef2555e670 (diff) |
gnu: Add go-github-com-zitadel-logging.
* gnu/packages/golang-xyz.scm (go-github-com-zitadel-logging): New variable.
Change-Id: I5c08e7cdf532439110e230355aa4784c44af11a7
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 5d0154e31e..992d5fbf27 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -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") |