diff options
author | Mark H Weaver <mhw@netris.org> | 2018-02-03 22:46:07 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-02-03 22:46:07 -0500 |
commit | e7ca634912db59596f67dc805d7b3604c5312eeb (patch) | |
tree | 567336ae23d1c566150ac39ca7673bd00a7e461f /gnu/packages/golang.scm | |
parent | b0881e0b55bf15d8111625607eb92968b65979ff (diff) | |
parent | 0903a51769427b0dac0ea515db4c5b678ce9a02c (diff) | |
download | guix-e7ca634912db59596f67dc805d7b3604c5312eeb.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/golang.scm')
-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 b8eb90ed9e..3149d36bae 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -496,3 +496,26 @@ way of specifying command line options.") termination.") (home-page "https://gopkg.in/tomb.v2") (license license:bsd-3)))) + +(define-public go-github.com-jtolds-gls + (package + (name "go-github.com-jtolds-gls") + (version "4.2.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jtolds/gls") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1vm37pvn0k4r6d3m620swwgama63laz8hhj3pyisdhxwam4m2g1h")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/jtolds/gls")) + (synopsis "@code{gls} provides Goroutine local storage") + (description + "The @code{gls} package provides a way to store a retrieve values +per-goroutine.") + (home-page "https://github.com/jtolds/gls") + (license license:expat))) |