guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 906b1ef5e9caf364c0331a0609c6c5adbf6664a5
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Jul 7 12:00:23 2025 +0100

    gnu: Add go-github-com-zitadel-logging.
    
    * gnu/packages/golang-xyz.scm (go-github-com-zitadel-logging): New variable.
    
    Change-Id: I5c08e7cdf532439110e230355aa4784c44af11a7
---
 gnu/packages/golang-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

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")

Reply via email to