From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42131) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1egt9P-0005Lh-92 for guix-patches@gnu.org; Wed, 31 Jan 2018 09:14:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1egt9J-0003ux-HI for guix-patches@gnu.org; Wed, 31 Jan 2018 09:14:11 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:42529) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1egt9J-0003ur-DB for guix-patches@gnu.org; Wed, 31 Jan 2018 09:14:05 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1egt9H-0003Ro-JO for guix-patches@gnu.org; Wed, 31 Jan 2018 09:14:05 -0500 Subject: [bug#30306] [PATCH 3/5] gnu: Add go-github.com-jtolds-gls. Resent-Message-ID: From: Christopher Baines Date: Wed, 31 Jan 2018 14:13:17 +0000 Message-Id: <20180131141319.14598-3-mail@cbaines.net> In-Reply-To: <20180131141319.14598-1-mail@cbaines.net> References: <20180131141319.14598-1-mail@cbaines.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30306@debbugs.gnu.org * gnu/packages/golang.scm (go-github.com-jtolds-gls): New variable. --- gnu/packages/golang.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index b8eb90ed9..3149d36ba 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))) -- 2.15.1