gnu: go-github-com-gorilla-csrf: Adjust package style.

* gnu/packages/golang-web.scm (go-github-com-gorilla-csrf): Apply list
package style. Shift order.
[propagated-inputs]: Remove labels.

Change-Id: Id7f87529c2dc66c3c6fd5b2b05422569c37e3920
This commit is contained in:
Sharlatan Hellseher 2024-06-27 00:30:56 +01:00
parent 51b0244afe
commit cda6baaa3e
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1044,11 +1044,12 @@ (define-public go-github-com-gorilla-csrf
(sha256
(base32 "0iryq0z48yi7crfbd8jxyn7lh1gsglpiglvjgnf23bz6xfisssav"))))
(build-system go-build-system)
(propagated-inputs
`(("github.com/gorilla/securecookie" ,go-github-com-gorilla-securecookie)
("github.com/pkg/errors" ,go-github-com-pkg-errors)))
(arguments
'(#:import-path "github.com/gorilla/csrf"))
(list
#:import-path "github.com/gorilla/csrf"))
(propagated-inputs
(list go-github-com-gorilla-securecookie
go-github-com-pkg-errors))
(home-page "https://github.com/gorilla/csrf")
(synopsis "Cross Site Request Forgery (CSRF) prevention middleware")
(description