ba7c0893d4
The buildGoModule infrastructure does not make use of goPackagePath it is a residue from buildGoPackage.
38 lines
944 B
Nix
38 lines
944 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";
|
|
};
|
|
|
|
vendorSha256 = "1qvbm8v8yah6r6cw1cvdw79yiwxb2amzdkkzvzbwigy0j4bvn9mi";
|
|
|
|
doCheck = false;
|
|
|
|
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;
|
|
};
|
|
}
|