sharlatan pushed a commit to branch go-team
in repository guix.
commit d2127c9de8eedac0913a8120a89e2d67c7ac92fe
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Feb 20 14:45:50 2025 +0000
gnu: Add go-github-com-fasthttp-router.
* gnu/packages/golang-web.scm (go-github-com-fasthttp-router): New variable.
Change-Id: Id6a35e3d3bb47ac21d1712a9377c53c50d9d97a1
---
gnu/packages/golang-web.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index ab908122b6..5e75339d9f 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -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")