Merge pull request #60093 from thoughtpolice/nixpkgs/kind-update

kind: 0.1.0 -> 0.2.1
This commit is contained in:
Austin Seipp 2019-04-23 11:21:18 -05:00 committed by GitHub
commit 359facc3d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,15 +4,18 @@ with stdenv.lib;
buildGoPackage rec {
name = "kind-${version}";
version = "0.1.0";
version = "0.2.1";
src = fetchFromGitHub {
rev = "${version}";
owner = "kubernetes-sigs";
repo = "kind";
sha256 = "01ifmnv3jid4ls6qw9d6j9vldjbbnrwclzv8spnh6fnzb2wprln2";
sha256 = "14ddhml9rh7x4j315fb332206xbn1rzx3i0ngj3220vb6d5dv8if";
};
# move dev tool package that confuses the go compiler
patchPhase = "rm -r hack";
goPackagePath = "sigs.k8s.io/kind";
excludedPackages = "images/base/entrypoint";