From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51212) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fcvAQ-0000Gd-7Y for guix-patches@gnu.org; Tue, 10 Jul 2018 12:07:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fcvAM-0005CT-7u for guix-patches@gnu.org; Tue, 10 Jul 2018 12:07:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:46321) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fcvAM-0005C9-36 for guix-patches@gnu.org; Tue, 10 Jul 2018 12:07:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fcvAL-0000ZZ-N3 for guix-patches@gnu.org; Tue, 10 Jul 2018 12:07:01 -0400 Subject: [bug#32113] [PATCH 2/5] gnu: Add go-github-com-docker-machine. References: <20180710160228.30483-1-pierre-antoine.rouby@inria.fr> In-Reply-To: <20180710160228.30483-1-pierre-antoine.rouby@inria.fr> Resent-Message-ID: From: Rouby Pierre-Antoine Date: Tue, 10 Jul 2018 18:06:06 +0200 Message-Id: <20180710160609.30540-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-machine): New variable. --- gnu/packages/golang.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 609a0a8b1..515d99785 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1866,3 +1866,27 @@ to interacting with distribution components.") (description "This package provides common package to work with network connections in Go langage.") (license license:asl2.0)))) + +(define-public go-github-com-docker-machine + (let ((commit "7b7a141da84480342357c51838be142bf183b095") + (revision "0")) + (package + (name "go-github-com-docker-machine") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/docker/machine.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0bavk0lvs462yh0lnmnxi9psi5qv1x3nvzmd2b0drsahlp1gxi8s")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/docker/machine")) + (home-page "https://github.com/docker/machine") + (synopsis "Machine management for a container-centric world") + (description "Lets you create Docker hosts on your computer.") + (license license:asl2.0)))) -- 2.17.0