From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55232) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fNJhq-0007Hp-9i for guix-patches@gnu.org; Mon, 28 May 2018 11:05:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fNJhn-00026P-1Z for guix-patches@gnu.org; Mon, 28 May 2018 11:05:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:44628) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fNJhm-000265-Tq for guix-patches@gnu.org; Mon, 28 May 2018 11:05:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fNJhm-0001Sq-IT for guix-patches@gnu.org; Mon, 28 May 2018 11:05:02 -0400 Subject: [bug#31625] [PATCH 6/6] gnu: Add go-github-com-gorilla-context. References: <20180528145939.24256-1-pierre-antoine.rouby@inria.fr> In-Reply-To: <20180528145939.24256-1-pierre-antoine.rouby@inria.fr> Resent-Message-ID: From: Rouby Pierre-Antoine Date: Mon, 28 May 2018 17:03:56 +0200 Message-Id: <20180528150356.24530-1-pierre-antoine.rouby@inria.fr> 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: 31625@debbugs.gnu.org Cc: Rouby Pierre-Antoine * gnu/packages/golang.scm (go-github-com-gorilla-context): New variable. --- gnu/packages/golang.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 6ace45890..cad6e5a60 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1601,3 +1601,28 @@ preformance characteristics of running contrainers.") (description "Gofuzz is a library for populationg go objects with random values.") (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 "This packages is registry for request variables") + (description "Gorilla/context is a general purpose registry for global +request variables.") + (license license:bsd-3)))) -- 2.17.0