1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: Add go-github-com-fasthttp-router.

* gnu/packages/golang-web.scm (go-github-com-fasthttp-router): New variable.

Change-Id: Id6a35e3d3bb47ac21d1712a9377c53c50d9d97a1
This commit is contained in:
Sharlatan Hellseher 2025-02-20 14:45:50 +00:00
parent 5401798409
commit 2f09820c6e
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -2447,6 +2447,33 @@ documents, as well as for calculating & applying
@url{https://tools.ietf.org/html/rfc7396,RFC7396 JSON merge patches}.")
(license license:bsd-3)))
(define-public go-github-com-fasthttp-router
(package
(name "go-github-com-fasthttp-router")
(version "1.5.4")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/fasthttp/router")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1szc2s0jbk6jivgfmgxy7iykwqd6b0033jnnr0l47vyxbw7q8zvg"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/fasthttp/router"))
(propagated-inputs
(list go-github-com-savsgio-gotils
go-github-com-valyala-bytebufferpool
go-github-com-valyala-fasthttp))
(home-page "https://github.com/fasthttp/router")
(synopsis "Router implementation for fasthttp")
(description
"Package router is a trie based high performance HTTP request router.")
(license license:bsd-3)))
(define-public go-github-com-felixge-httpsnoop
(package
(name "go-github-com-felixge-httpsnoop")