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

36 lines
913 B
Nix
Raw Normal View History

2019-12-12 23:13:24 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub, installShellFiles }:
2018-10-06 11:43:21 +00:00
with stdenv.lib;
buildGoPackage rec {
pname = "kind";
2020-01-15 21:33:17 +00:00
version = "0.7.0";
2018-10-06 11:43:21 +00:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "kubernetes-sigs";
repo = "kind";
2020-01-15 21:33:17 +00:00
sha256 = "0hvb0rbi1m0d1flk15l3wws96kmmjhsy6islkhy5h7jalc4k0nx4";
2018-10-06 11:43:21 +00:00
};
goDeps = ./deps.nix;
2018-10-06 11:43:21 +00:00
goPackagePath = "sigs.k8s.io/kind";
2019-09-09 11:12:59 +00:00
subPackages = [ "." ];
2018-10-06 11:43:21 +00:00
2019-12-12 23:13:24 +00:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
2020-04-26 03:16:54 +00:00
for shell in bash zsh; do
$out/bin/kind completion $shell > kind.$shell
2020-04-26 03:16:54 +00:00
installShellCompletion kind.$shell
done
2019-12-12 23:13:24 +00:00
'';
2018-10-06 11:43:21 +00: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 11:43:21 +00:00
};
}