[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
- [bug#54560] [PATCH 04/47] gnu: go-github-com-prometheus-client-golang: Update to 1.12.1., (continued)
- [bug#54560] [PATCH 04/47] gnu: go-github-com-prometheus-client-golang: Update to 1.12.1., Maxime Devos, 2022/03/25
- [bug#54560] [PATCH 04/47] gnu: go-github-com-prometheus-client-golang: Update to 1.12.1., Maxime Devos, 2022/03/25
- [bug#54560] [PATCH 04/47] gnu: go-github-com-prometheus-client-golang: Update to 1.12.1., Maxime Devos, 2022/03/25
- [bug#54560] [PATCH 04/47] gnu: go-github-com-prometheus-client-golang: Update to 1.12.1., Maxime Devos, 2022/03/25
- [bug#54560] [PATCH 04/47] gnu: go-github-com-prometheus-client-golang: Update to 1.12.1., Leo Nikkilä, 2022/03/25
[bug#54560] [PATCH 08/47] gnu: Add go-github-com-go-logfmt-logfmt., Leo Nikkilä, 2022/03/25
[bug#54560] [PATCH 11/47] gnu: Add go-github-com-josharian-intern., Leo Nikkilä, 2022/03/25
[bug#54560] [PATCH 12/47] gnu: Add go-github-com-julienschmidt-httprouter.,
Leo Nikkilä <=
[bug#54560] [PATCH 07/47] gnu: Add go-github-com-edsrzf-mmap-go., Leo Nikkilä, 2022/03/25
[bug#54560] [PATCH 14/47] gnu: Add go-github-com-modern-go-concurrent., Leo Nikkilä, 2022/03/25
[bug#54560] [PATCH 23/47] gnu: Add go-github-com-shurcool-httpgzip., Leo Nikkilä, 2022/03/25
[bug#54560] [PATCH 18/47] gnu: Add go-github-com-oklog-run., Leo Nikkilä, 2022/03/25
[bug#54560] [PATCH 21/47] gnu: Add go-github-com-puerkitobio-urlesc., Leo Nikkilä, 2022/03/25