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>
This commit is contained in:
Rouby Pierre-Antoine 2018-05-28 17:03:56 +02:00 committed by Leo Famulari
parent daed2c5e6a
commit 9cf879a573
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -1597,3 +1597,27 @@ (define-public go-github-com-google-gofuzz
(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))))