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

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

Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
Martin Becze 2020-11-30 14:24:06 -06:00 committed by Christopher Baines
parent 4368b9b2d7
commit 2d0716e081
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -1382,6 +1382,33 @@ (define-public go-github-com-gorilla-securecookie
encrypted cookie values for Go web applications.")
(license license:bsd-3)))
(define-public go-github-com-gorilla-csrf
(package
(name "go-github-com-gorilla-csrf")
(version "1.7.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/gorilla/csrf")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(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"))
(home-page "https://github.com/gorilla/csrf")
(synopsis "Cross Site Request Forgery (CSRF) prevention middleware")
(description
"Gorilla/csrf provides Cross Site Request Forgery (CSRF) prevention
middleware for Go web applications and services.")
(license license:bsd-3)))
(define-public go-github-com-jonboulle-clockwork
(let ((commit "e3653ace2d63753697e0e5b07b9393971c0bba9d")
(revision "0"))