guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 111229c1a842d9be291d581bdbbd48ef2555e670
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Jul 7 11:40:17 2025 +0100

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

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index d957aa910e..5d0154e31e 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -18635,6 +18635,31 @@ configuration languages, but other uses may be 
possible too.")
 utilities for cty Golang module.")
     (license license:expat)))
 
+(define-public go-github-com-zitadel-schema
+  (package
+    (name "go-github-com-zitadel-schema")
+    (version "1.3.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/zitadel/schema";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1nvxlqzz12ahhf6cmdy0gjfx8z30in0xamzk9ydag3ddgdqr5370"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/zitadel/schema"))
+    (home-page "https://github.com/zitadel/schema";)
+    (synopsis "Fills a struct with form values")
+    (description
+     "Package @code{zitadel/schema} converts structs to and from form values.
+It is a maintained fork of @url{gorilla/schema,
+https://github.com/gorilla/schema}";)
+    (license license:bsd-3)))
+
 (define-public go-github-com-zyedidia-clipper
   (package
     (name "go-github-com-zyedidia-clipper")

Reply via email to