guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit b382b6720e64c0ff35a429887d05786e88c25767
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri May 1 12:30:35 2026 +0100
gnu: Add go-github-com-gofiber-schema.
* gnu/packages/golang-xyz.scm (go-github-com-gofiber-schema): New variable.
Change-Id: I54d46cee7218f7cd278b71a2c27f9f74347053ef
---
gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 85b83fec3a..1f7deb7409 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -12006,6 +12006,33 @@ the D-Bus message bus system.")
((#:import-path _ "github.com/godbus/dbus")
"github.com/godbus/dbus/v5")))))
+(define-public go-github-com-gofiber-schema
+ (package
+ (name "go-github-com-gofiber-schema")
+ (version "1.7.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/gofiber/schema")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0zslqfcaw7j4rdzmj02228fcmqn8syz0xvmi79qhdsr15b8iy9gc"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/gofiber/schema"))
+ (propagated-inputs
+ (list go-github-com-gofiber-utils-v2))
+ (home-page "https://github.com/gofiber/schema")
+ (synopsis "Fills a struct with form values")
+ (description
+ "This package implements a functionality to fills a struct with form
+values.
+It's an alternative fork of @url{https://github.com/gorilla/schema}.")
+ (license license:bsd-3)))
+
(define-public go-github-com-gofiber-utils-v2
(package
(name "go-github-com-gofiber-utils-v2")