nixpkgs/pkgs/development/tools/kind/default.nix
Shuhao Wu e7bbcb3cb6 Updated kind from 0.7 -> 0.8.1
Also use buildGoModule instead of buildGoPackages
2020-05-12 19:41:48 +00:00

36 lines
958 B
Nix

{ stdenv, buildGoModule, fetchFromGitHub, installShellFiles }:
with stdenv.lib;
buildGoModule rec {
pname = "kind";
version = "0.8.1";
src = fetchFromGitHub {
rev = "v${version}";
owner = "kubernetes-sigs";
repo = "kind";
sha256 = "0r301nqvycik8fwlghq0cymmq4rm7xp8haj39i2nynxyw8zk6zym";
};
modSha256 = "1vfdyd4yj79f2n0w98k9h4sklxwg49ajlp1blvpslbzmpfkmcjsz";
goPackagePath = "sigs.k8s.io/kind";
subPackages = [ "." ];
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
for shell in bash zsh; do
$out/bin/kind completion $shell > kind.$shell
installShellCompletion kind.$shell
done
'';
meta = {
description = "Kubernetes IN Docker - local clusters for testing Kubernetes";
homepage = "https://github.com/kubernetes-sigs/kind";
maintainers = with maintainers; [ offline rawkode ];
license = stdenv.lib.licenses.asl20;
platforms = platforms.unix;
};
}