diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-07 11:40:17 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-22 20:13:00 +0100 |
commit | 111229c1a842d9be291d581bdbbd48ef2555e670 (patch) | |
tree | d6a6c5178511ba07a676648f75da7a504f19248d /gnu/packages/golang-xyz.scm | |
parent | 464f0222ac96bc0972f8b52db93a879f27d88244 (diff) |
gnu: Add go-github-com-zitadel-schema.
* gnu/packages/golang-xyz.scm (go-github-com-zitadel-schema): New variable.
Change-Id: Iacbf906dfd31d5d002577be9e138797ff2e2899a
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
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") |