diff options
author | Martin Becze <mjbecze@riseup.net> | 2020-11-30 14:24:04 -0600 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-12-08 08:37:49 +0000 |
commit | d2a42cee0bfacc8afe752830f18c8356c396ed2d (patch) | |
tree | f4fb31c623d9915ac2ce38d9b6294f4aa5103f35 /gnu/packages/golang.scm | |
parent | 33504d4d70edd8c4a1c40cc03ea7993f926cb7d8 (diff) | |
download | guix-d2a42cee0bfacc8afe752830f18c8356c396ed2d.tar guix-d2a42cee0bfacc8afe752830f18c8356c396ed2d.tar.gz |
gnu: Add go-github-com-gorilla-handlers.
* gnu/packages/golang.scm (go-github-com-gorilla-handlers): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu/packages/golang.scm')
-rw-r--r-- | gnu/packages/golang.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index b0502d8f6f..1e372f6b3b 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1331,6 +1331,32 @@ values for the purpose of fuzz testing.") incoming requests with their respective handler.") (license license:bsd-3))) +(define-public go-github-com-gorilla-handlers + (package + (name "go-github-com-gorilla-handlers") + (version "1.5.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/handlers") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "15gycdz9lkjnsvvichsbdf25vf6pi1sfn41khhz53iqf300l0w0s")))) + (build-system go-build-system) + (propagated-inputs + `(("github.com/felixge/httpsnoop" ,go-github-com-felixge-httpsnoop))) + (arguments + '(#:tests? #f ; Tries to download from the internet + #:import-path "github.com/gorilla/handlers")) + (home-page "https://github.com/gorilla/handlers") + (synopsis "Middleware for Go HTTP services and web applications") + (description "A collection of useful middleware for Go HTTP services +and web applications.") + (license license:bsd-3))) + (define-public go-github-com-jonboulle-clockwork (let ((commit "e3653ace2d63753697e0e5b07b9393971c0bba9d") (revision "0")) |