gnu: go-github-com-gorilla-context: Move to (gnu packages golang-web).
* gnu/packages/golang.scm (go-github-com-gorilla-context): Move from here... * gnu/packages/golang-web.scm: ...to here. Change-Id: I22ba5493a48fe619ef2aca185c559da3a81f8d81master
parent
b184a16c14
commit
032cac46ed
|
@ -146,6 +146,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-context
|
||||||
|
(let ((commit "08b5f424b9271eedf6f9f0ce86cb9396ed337a42")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "go-github-com-gorilla-context")
|
||||||
|
(version (git-version "0.0.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/gorilla/context")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:import-path "github.com/gorilla/context"))
|
||||||
|
(home-page "https://github.com/gorilla/context")
|
||||||
|
(synopsis "Go registry for request variables")
|
||||||
|
(description
|
||||||
|
"This package provides @code{gorilla/context}, which is a general
|
||||||
|
purpose registry for global request variables in the Go programming
|
||||||
|
language.")
|
||||||
|
(license license:bsd-3))))
|
||||||
|
|
||||||
(define-public go-github-com-gorilla-csrf
|
(define-public go-github-com-gorilla-csrf
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-gorilla-csrf")
|
(name "go-github-com-gorilla-csrf")
|
||||||
|
|
|
@ -4641,30 +4641,6 @@ information about the resource usage and performance characteristics of running
|
||||||
containers.")
|
containers.")
|
||||||
(license license:asl2.0))))
|
(license license:asl2.0))))
|
||||||
|
|
||||||
(define-public go-github-com-gorilla-context
|
|
||||||
(let ((commit "08b5f424b9271eedf6f9f0ce86cb9396ed337a42")
|
|
||||||
(revision "0"))
|
|
||||||
(package
|
|
||||||
(name "go-github-com-gorilla-context")
|
|
||||||
(version (git-version "0.0.0" revision commit))
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/gorilla/context")
|
|
||||||
(commit commit)))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:import-path "github.com/gorilla/context"))
|
|
||||||
(home-page "https://github.com/gorilla/context")
|
|
||||||
(synopsis "Go registry for request variables")
|
|
||||||
(description "This package provides @code{gorilla/context}, which is a general purpose registry for global request variables in the Go programming language.")
|
|
||||||
(license license:bsd-3))))
|
|
||||||
|
|
||||||
(define-public go-github-com-andybalholm-brotli
|
(define-public go-github-com-andybalholm-brotli
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-andybalholm-brotli")
|
(name "go-github-com-andybalholm-brotli")
|
||||||
|
|
Reference in New Issue