kind: 0.1.0 -> 0.2.1

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2019-04-22 17:27:57 -05:00
parent d6db31a720
commit da57a2fa60
No known key found for this signature in database
GPG key ID: 25D2038DEB08021D

View file

@ -4,23 +4,26 @@ 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";
rev = "${version}";
owner = "kubernetes-sigs";
repo = "kind";
sha256 = "14ddhml9rh7x4j315fb332206xbn1rzx3i0ngj3220vb6d5dv8if";
};
# move dev tool package that confuses the go compiler
patchPhase = "rm -r hack";
goPackagePath = "sigs.k8s.io/kind";
excludedPackages = "images/base/entrypoint";
meta = {
description = "Kubernetes IN Docker - local clusters for testing Kubernetes";
homepage = https://github.com/kubernetes-sigs/kind;
homepage = https://github.com/kubernetes-sigs/kind;
maintainers = with maintainers; [ offline rawkode ];
license = stdenv.lib.licenses.asl20;
platforms = platforms.unix;
license = stdenv.lib.licenses.asl20;
platforms = platforms.unix;
};
}