mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-github-com-gorilla-csrf: Move to (gnu packages golang-web).
* gnu/packages/golang.scm (go-github-com-gorilla-csrf): Move from here... * gnu/packages/golang-web.scm: ...to here. Change-Id: I77bcbdaf515152b95418f9e2632d810202a1e23a
This commit is contained in:
parent
f1fab49122
commit
80f52867ab
2 changed files with 26 additions and 27 deletions
|
@ -144,6 +144,32 @@ metrics (i.e. response time, bytes written, and http status code) from your
|
||||||
application's http.Handlers.")
|
application's http.Handlers.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(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-gorilla-css
|
(define-public go-github-com-gorilla-css
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-gorilla-css")
|
(name "go-github-com-gorilla-css")
|
||||||
|
|
|
@ -4768,33 +4768,6 @@ the @code{c2go} tool at
|
||||||
@url{https://github.com/andybalholm/c2go,https://github.com/andybalholm/c2go}.")
|
@url{https://github.com/andybalholm/c2go,https://github.com/andybalholm/c2go}.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(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
|
(define-public go-github-com-jonboulle-clockwork
|
||||||
(let ((commit "e3653ace2d63753697e0e5b07b9393971c0bba9d")
|
(let ((commit "e3653ace2d63753697e0e5b07b9393971c0bba9d")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue