diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2023-09-01 20:58:14 +0100 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-09-04 22:46:07 -0400 |
commit | 8c41567ea508fab07aaee04188c0849210f15db8 (patch) | |
tree | 991a4092aeaa7ec7f1266e2e526c3cb501ca8be6 /gnu | |
parent | 86fffbb4aefe8756ad06a61ab77e40b67378dae0 (diff) | |
download | guix-8c41567ea508fab07aaee04188c0849210f15db8.tar.gz guix-8c41567ea508fab07aaee04188c0849210f15db8.zip |
gnu: Add go-github-com-julienschmidt-httprouter.
* gnu/packages/golang.scm (go-github-com-julienschmidt-httprouter): New variable.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/golang.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 624cb11e0c..262410996c 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -10088,6 +10088,29 @@ extensions.") for color and styles.") (license license:lgpl3))) +(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")) + (home-page "https://github.com/julienschmidt/httprouter") + (synopsis "High performance HTTP request router") + (description + "Package @code{httprouter} is a trie based high performance HTTP request +router.") + (license license:bsd-3))) + (define-public go-github-com-kevinburke-ssh-config (package (name "go-github-com-kevinburke-ssh-config") |