2016-09-17 01:15:54 +02:00
|
|
|
# This file was generated by go2nix.
|
2021-01-25 09:26:54 +01:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub, installShellFiles }:
|
2016-09-17 01:15:54 +02:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "machine";
|
2019-01-23 12:53:36 +01:00
|
|
|
version = "0.16.1";
|
2016-09-17 01:15:54 +02:00
|
|
|
|
|
|
|
goPackagePath = "github.com/docker/machine";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
owner = "docker";
|
|
|
|
repo = "machine";
|
2019-01-23 12:53:36 +01:00
|
|
|
sha256 = "0xxzxi5v7ji9j2k7kxhi0ah91lfa7b9rg3nywgx0lkv8dlgp8kmy";
|
2016-09-17 01:15:54 +02:00
|
|
|
};
|
|
|
|
|
2020-04-26 05:16:50 +02:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2016-12-11 14:54:23 +01:00
|
|
|
|
2020-04-26 05:16:50 +02:00
|
|
|
postInstall = ''
|
|
|
|
pushd go/src/${goPackagePath}/contrib/completion
|
|
|
|
installShellCompletion --bash bash/*
|
|
|
|
installShellCompletion --zsh zsh/*
|
|
|
|
popd
|
2016-09-17 01:15:54 +02:00
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://docs.docker.com/machine/";
|
2020-10-11 07:55:05 +02:00
|
|
|
description = "Docker Machine is a tool that lets you install Docker Engine on virtual hosts, and manage Docker Engine on the hosts";
|
2016-09-17 01:15:54 +02:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ offline tailhook ];
|
2016-09-30 16:41:07 +02:00
|
|
|
platforms = platforms.unix;
|
2016-09-17 01:15:54 +02:00
|
|
|
};
|
|
|
|
}
|