guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#54560] [PATCH 12/47] gnu: Add go-github-com-julienschmidt-httproute


From: Leo Nikkilä
Subject: [bug#54560] [PATCH 12/47] gnu: Add go-github-com-julienschmidt-httprouter.
Date: Fri, 25 Mar 2022 15:31:36 +0200

* gnu/packages/golang.scm (go-github-com-julienschmidt-httprouter): New
variable.
---
 gnu/packages/golang.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index a9286f8b8a..cf4c85b7cc 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -9967,6 +9967,38 @@ (define-public go-github-com-josharian-intern
     (home-page "https://github.com/josharian/intern";)
     (license license:expat)))
 
+(define-public go-github-com-julienschmidt-httprouter
+  (package
+    (name "go-github-com-julienschmidt-httprouter")
+    (version "1.3.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/julienschmidt/httprouter";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1a6sy0ysqknsjssjh7qg1dqn21xmj9a36c57nrk7srfmab4ffmk1"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/julienschmidt/httprouter"))
+    (synopsis "High performance HTTP request router")
+    (description
+     "HttpRouter is a lightweight high performance HTTP request router
+(also called multiplexer or just mux for short) for Go.
+
+In contrast to the default mux of Go's @code{net/http} package, this
+router supports variables in the routing pattern and matches against the
+request method.  It also scales better.
+
+The router is optimized for high performance and a small memory
+footprint.  It scales well even with very long paths and a large number
+of routes.  A compressing dynamic trie (radix tree) structure is used for
+efficient matching.")
+    (home-page "https://github.com/julienschmidt/httprouter";)
+    (license license:bsd-3)))
+
 (define-public go-google-golang-org-protobuf
   (package
     (name "go-google-golang-org-protobuf")
-- 
2.34.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]