gnu: Add go-github-com-gorilla-schema.

* gnu/packages/golang-web.scm (go-github-com-gorilla-schema): New variable.

Change-Id: Ie31e0c3f7127c44be5de59b3509467f5429db8c4
This commit is contained in:
Sharlatan Hellseher 2024-12-31 17:50:58 +00:00
parent e4d7bb416a
commit 3c47a77dd0
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -3291,6 +3291,30 @@ (define-public go-github-com-gorilla-mux
incoming requests with their respective handler.")
(license license:bsd-3)))
(define-public go-github-com-gorilla-schema
(package
(name "go-github-com-gorilla-schema")
(version "1.4.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/gorilla/schema")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "16gk174mybvz0gg2w1wmpc96jhhi94i1vvclyzr3qkv7s6gadifn"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/gorilla/schema"))
(home-page "https://github.com/gorilla/schema")
(synopsis "Fills a struct with form values")
(description
"This package implements a functionality to fills a struct with form
values.")
(license license:bsd-3)))
(define-public go-github-com-gorilla-securecookie
(package
(name "go-github-com-gorilla-securecookie")