From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50080) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fcv7W-00062N-5C for guix-patches@gnu.org; Tue, 10 Jul 2018 12:04:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fcv7S-00045D-3D for guix-patches@gnu.org; Tue, 10 Jul 2018 12:04:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:46307) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fcv7R-000459-VX for guix-patches@gnu.org; Tue, 10 Jul 2018 12:04:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fcv7R-0000UH-Mt for guix-patches@gnu.org; Tue, 10 Jul 2018 12:04:01 -0400 Subject: [bug#32113] [PATCH 1/5] gnu: Add go-github-com-docker-go-connections. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49789) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fcv6Z-0005NM-IV for guix-patches@gnu.org; Tue, 10 Jul 2018 12:03:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fcv6T-0003ip-OW for guix-patches@gnu.org; Tue, 10 Jul 2018 12:03:07 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:19740) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fcv6T-0003gN-CO for guix-patches@gnu.org; Tue, 10 Jul 2018 12:03:01 -0400 From: Rouby Pierre-Antoine Date: Tue, 10 Jul 2018 18:02:28 +0200 Message-Id: <20180710160228.30483-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: 32113@debbugs.gnu.org Cc: Rouby Pierre-Antoine * gnu/packages/golang.scm (go-github-com-docker-go-connections): 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 41d2e5ce1..609a0a8b1 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1841,3 +1841,28 @@ deliver content") store, and deliver content. It's containe Docker Registry 2.0 and libraries to interacting with distribution components.") (license license:asl2.0)))) + +(define-public go-github-com-docker-go-connections + (let ((commit "3ede32e2033de7505e6500d6c868c2b9ed9f169d") + (revision "0")) + (package + (name "go-github-com-docker-go-connections") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/go-connections.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0v1pkr8apwmhyzbjfriwdrs1ihlk6pw7izm57r24mf9jdmg3fyb0")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/docker/go-connections")) + (home-page "https://github.com/docker/go-connections") + (synopsis "Provides common package to work with network connections.") + (description "This package provides common package to work with network +connections in Go langage.") + (license license:asl2.0)))) -- 2.17.0