Merge pull request #80836 from zowoq/skaffold

skaffold: 1.3.1 -> 1.4.0
This commit is contained in:
Mario Rodas 2020-02-25 06:37:40 -05:00 committed by GitHub
commit 82cbc6af3c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,10 +1,10 @@
{ lib, buildGoPackage, fetchFromGitHub }: { lib, buildGoPackage, fetchFromGitHub, installShellFiles }:
buildGoPackage rec { buildGoPackage rec {
pname = "skaffold"; pname = "skaffold";
version = "1.3.1"; version = "1.4.0";
# rev is the 1.3.1 commit, mainly for skaffold version command output # rev is the ${version} commit, mainly for skaffold version command output
rev = "6ba887a42438d1da578a005cf550e618fee6dfb8"; rev = "bb324609b4254ceb9f76d35eb03642a6a1807867";
goPackagePath = "github.com/GoogleContainerTools/skaffold"; goPackagePath = "github.com/GoogleContainerTools/skaffold";
subPackages = ["cmd/skaffold"]; subPackages = ["cmd/skaffold"];
@ -20,13 +20,21 @@ buildGoPackage rec {
owner = "GoogleContainerTools"; owner = "GoogleContainerTools";
repo = "skaffold"; repo = "skaffold";
rev = "v${version}"; rev = "v${version}";
sha256 = "1ph7qyk5khdinxbhgqhhja8fz8b6q8yz5rj5xh0nwaff4bmlfd99"; sha256 = "0nrz2gnp722cq4p8lcfl0nlws53c2bfq17jgr2jad4vyjglgfscw";
}; };
meta = { nativeBuildInputs = [ installShellFiles ];
postInstall = ''
for shell in bash zsh; do
$bin/bin/skaffold completion $shell > skaffold.$shell
installShellCompletion skaffold.$shell
done
'';
meta = with lib; {
description = "Easy and Repeatable Kubernetes Development"; description = "Easy and Repeatable Kubernetes Development";
homepage = https://github.com/GoogleContainerTools/skaffold; homepage = "https://skaffold.dev/";
license = lib.licenses.asl20; license = licenses.asl20;
maintainers = with lib.maintainers; [ vdemeester ]; maintainers = with maintainers; [ vdemeester ];
}; };
} }