Merge pull request #18681 from mikefaille/docker-machine

docker-machine : add new package
This commit is contained in:
Jaka Hudoklin 2016-09-17 02:17:05 +02:00 committed by GitHub
commit 83e611fcd1
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
# This file was generated by go2nix.
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "machine-${version}";
version = "0.8.1";
goPackagePath = "github.com/docker/machine";
src = fetchFromGitHub {
rev = "v${version}";
owner = "docker";
repo = "machine";
sha256 = "0l4a5bqfw8i8wrl5yzkqy848r7vdx6hw8p5m3z3vzabvsmsjjwy7";
};
postFixup = ''
mv $bin/bin/cmd $bin/bin/docker-machine
'';
meta = with stdenv.lib; {
homepage = https://docs.docker.com/machine/;
description = "Docker Machine is a tool that lets you install Docker Engine on virtual hosts, and manage Docker Engine on the hosts.";
license = licenses.asl20;
maintainers = with maintainers; [ offline tailhook ];
platforms = platforms.linux;
};
}

View File

@ -12782,6 +12782,8 @@ in
docker-gc = callPackage ../applications/virtualization/docker/gc.nix { }; docker-gc = callPackage ../applications/virtualization/docker/gc.nix { };
docker-machine = callPackage ../applications/networking/cluster/docker-machine { };
doodle = callPackage ../applications/search/doodle { }; doodle = callPackage ../applications/search/doodle { };
drumgizmo = callPackage ../applications/audio/drumgizmo { }; drumgizmo = callPackage ../applications/audio/drumgizmo { };