Merge pull request #60093 from thoughtpolice/nixpkgs/kind-update
kind: 0.1.0 -> 0.2.1
This commit is contained in:
commit
359facc3d3
@ -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;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user