nixpkgs/pkgs/development/tools/kind/default.nix

36 lines
961 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub, installShellFiles }:
2018-10-06 12:43:21 +01:00
with stdenv.lib;
buildGoModule rec {
pname = "kind";
version = "0.8.1";
2018-10-06 12:43:21 +01:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "kubernetes-sigs";
repo = "kind";
sha256 = "0r301nqvycik8fwlghq0cymmq4rm7xp8haj39i2nynxyw8zk6zym";
2018-10-06 12:43:21 +01:00
};
vendorSha256 = "1qvbm8v8yah6r6cw1cvdw79yiwxb2amzdkkzvzbwigy0j4bvn9mi";
2018-10-06 12:43:21 +01:00
goPackagePath = "sigs.k8s.io/kind";
2019-09-09 12:12:59 +01:00
subPackages = [ "." ];
2018-10-06 12:43:21 +01:00
2019-12-12 23:13:24 +00:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
2020-04-26 04:16:54 +01:00
for shell in bash zsh; do
$out/bin/kind completion $shell > kind.$shell
2020-04-26 04:16:54 +01:00
installShellCompletion kind.$shell
done
2019-12-12 23:13:24 +00:00
'';
2018-10-06 12:43:21 +01:00
meta = {
description = "Kubernetes IN Docker - local clusters for testing Kubernetes";
homepage = "https://github.com/kubernetes-sigs/kind";
2018-12-13 20:32:59 +00:00
maintainers = with maintainers; [ offline rawkode ];
license = stdenv.lib.licenses.asl20;
platforms = platforms.unix;
2018-10-06 12:43:21 +01:00
};
}