kind: 0.2.1 -> v0.3.0 (#61964)

Co-Authored-By: lewo <lewo@abesis.fr>
This commit is contained in:
Jörn Gersdorf
2019-05-23 20:04:56 -05:00
committed by Austin Seipp
co-authored by lewo
parent 42f616ae1d
commit 1bc73d1a9a
2 changed files with 511 additions and 3 deletions
+4 -3
View File
@@ -4,18 +4,19 @@ with stdenv.lib;
buildGoPackage rec {
name = "kind-${version}";
version = "0.2.1";
version = "0.3.0";
src = fetchFromGitHub {
rev = "${version}";
rev = "v${version}";
owner = "kubernetes-sigs";
repo = "kind";
sha256 = "14ddhml9rh7x4j315fb332206xbn1rzx3i0ngj3220vb6d5dv8if";
sha256 = "1azl5knw1n7g42xp92r9k7y4rzwp9xx0spcldszrpry2v4lmc5sb";
};
# move dev tool package that confuses the go compiler
patchPhase = "rm -r hack";
goDeps = ./deps.nix;
goPackagePath = "sigs.k8s.io/kind";
excludedPackages = "images/base/entrypoint";