diff options
author | Rouby Pierre-Antoine <pierre-antoine.rouby@inria.fr> | 2018-05-28 17:03:56 +0200 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-05-29 18:39:08 -0400 |
commit | 9cf879a5739eec505119e2dfca59490d81f5ac99 (patch) | |
tree | 6ee30dbf46d710e3c90827bf69bc92685edebaac /gnu | |
parent | daed2c5e6a05b181ecc3bed930bd0f6723dec882 (diff) | |
download | gnu-guix-9cf879a5739eec505119e2dfca59490d81f5ac99.tar gnu-guix-9cf879a5739eec505119e2dfca59490d81f5ac99.tar.gz |
gnu: Add go-github-com-gorilla-context.
* gnu/packages/golang.scm (go-github-com-gorilla-context): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/golang.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index ac73016976..d61747a09c 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1597,3 +1597,27 @@ containers.") (description "Gofuzz is a library for populationg Go objects with random values for the purpose of fuzz testing.") (license license:asl2.0)))) + +(define-public go-github-com-gorilla-context + (let ((commit "08b5f424b9271eedf6f9f0ce86cb9396ed337a42") + (revision "0")) + (package + (name "go-github-com-gorilla-context") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/context.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/gorilla/context")) + (home-page "https://github.com/gorilla/context") + (synopsis "Go registry for request variables") + (description "This package provides @code{gorilla/context}, which is a general purpose registry for global request variables in the Go programming language.") + (license license:bsd-3)))) |