Skip to content

Commit

Permalink
Merge pull request #101577 from jonafato/kind-0.9.0
Browse files Browse the repository at this point in the history
kind: 0.8.1 -> 0.9.0
  • Loading branch information
bhipple committed Oct 25, 2020
2 parents 3269ab3 + d0bc054 commit b37c198
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/development/tools/kind/default.nix
Expand Up @@ -4,24 +4,24 @@ with stdenv.lib;

buildGoModule rec {
pname = "kind";
version = "0.8.1";
version = "0.9.0";

src = fetchFromGitHub {
rev = "v${version}";
owner = "kubernetes-sigs";
repo = "kind";
sha256 = "0r301nqvycik8fwlghq0cymmq4rm7xp8haj39i2nynxyw8zk6zym";
sha256 = "1kyjmlp1kmr3lwylnya6w392j1qpqgbvcacwpnz3ifyh3pbv32qr";
};

vendorSha256 = "1qvbm8v8yah6r6cw1cvdw79yiwxb2amzdkkzvzbwigy0j4bvn9mi";
vendorSha256 = "04fmqh6lhvvzpvf1l2xk1r8687k5jx2lb5199rgmjbfnjgsa0q2d";

doCheck = false;

subPackages = [ "." ];

nativeBuildInputs = [ installShellFiles ];
postInstall = ''
for shell in bash zsh; do
for shell in bash fish zsh; do
$out/bin/kind completion $shell > kind.$shell
installShellCompletion kind.$shell
done
Expand Down

0 comments on commit b37c198

Please sign in to comment.