inaugurate decent devshell

This commit is contained in:
David Arnold 2021-04-29 17:13:33 -05:00
parent be58b0e94e
commit 2026496ea0
No known key found for this signature in database
GPG key ID: 6D6A936E69C59D08
7 changed files with 313 additions and 4 deletions

View file

@ -0,0 +1,30 @@
{ stdenv, kubernetes, installShellFiles }:
stdenv.mkDerivation {
name = "kubectl-${kubernetes.version}";
# kubectl is currently part of the main distribution but will eventially be
# split out (see homepage)
dontUnpack = true;
nativeBuildInputs = [ installShellFiles ];
outputs = [ "out" "man" ];
installPhase = ''
install -D ${kubernetes}/bin/kubectl -t $out/bin
installManPage "${kubernetes.man}/share/man/man1"/kubectl*
for shell in bash zsh; do
$out/bin/kubectl completion $shell > kubectl.$shell
installShellCompletion kubectl.$shell
done
'';
meta = kubernetes.meta // {
description = "Kubernetes CLI";
homepage = "https://github.com/kubernetes/kubectl";
};
}