mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-14 11:00:36 +02:00
gnu: Add go-github-com-urfave-negroni.
* gnu/packages/golang-web.scm (go-github-com-urfave-negroni) (go-github-com-urfave-negroni-v3): New variables. Change-Id: I67b334df6c61c0db6f7614382c21c60e7280ec67
This commit is contained in:
parent
0f681074c5
commit
6a1c669acf
1 changed files with 43 additions and 0 deletions
|
@ -8612,6 +8612,49 @@ extract data from those paths.")
|
||||||
encoding library for the MessagePack, CBOR, JSON and the Binc formats.")
|
encoding library for the MessagePack, CBOR, JSON and the Binc formats.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-urfave-negroni
|
||||||
|
(package
|
||||||
|
(name "go-github-com-urfave-negroni")
|
||||||
|
(version "1.0.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/urfave/negroni")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1gp6j74adi1cn8fq5v3wzlzhwl4zg43n2746m4fzdcdimihk3ccp"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/urfave/negroni"))
|
||||||
|
(home-page "https://github.com/urfave/negroni")
|
||||||
|
(synopsis "Idiomatic HTTP Middleware for Golang")
|
||||||
|
(description
|
||||||
|
"Package negroni is an idiomatic approach to web middleware in Go. It is
|
||||||
|
tiny,non-intrusive, and encourages use of @code{net/http} Handlers.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-urfave-negroni-v3
|
||||||
|
(package
|
||||||
|
(inherit go-github-com-urfave-negroni)
|
||||||
|
(name "go-github-com-urfave-negroni-v3")
|
||||||
|
(version "3.1.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/urfave/negroni")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "04fbp15jq23sp10kgrpgmbif3mvzs82m1wx2bbmgknh27yy8i95y"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/urfave/negroni/v3"))))
|
||||||
|
|
||||||
(define-public go-github-com-valyala-fasthttp
|
(define-public go-github-com-valyala-fasthttp
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-valyala-fasthttp")
|
(name "go-github-com-valyala-fasthttp")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue