guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#32113] [PATCH 2/5] gnu: Add go-github-com-docker-machine.


From: Rouby Pierre-Antoine
Subject: [bug#32113] [PATCH 2/5] gnu: Add go-github-com-docker-machine.
Date: Tue, 10 Jul 2018 18:06:06 +0200

* 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






reply via email to

[Prev in Thread] Current Thread [Next in Thread]