kubectx: re-pack, switch from bash to go

With release 0.9, kubectx was rewritten in go. For more info see
https://github.com/ahmetb/kubectx/releases/tag/v0.9.0
This commit is contained in:
José Luis Lafuente 2020-06-12 18:19:54 +02:00
parent b47873026c
commit a89e9a2eec
No known key found for this signature in database
GPG Key ID: 8A3455EBE455489A

View File

@ -1,8 +1,6 @@
{ stdenv, lib, fetchFromGitHub, kubectl, makeWrapper }: { stdenv, buildGoModule, fetchFromGitHub, installShellFiles }:
with lib; buildGoModule rec {
stdenv.mkDerivation rec {
pname = "kubectx"; pname = "kubectx";
version = "0.9.0"; version = "0.9.0";
@ -13,41 +11,19 @@ stdenv.mkDerivation rec {
sha256 = "1b22jk8zl944w5zn3s7ybkkbmzp9519x32pfqwd1malfly7dzf55"; sha256 = "1b22jk8zl944w5zn3s7ybkkbmzp9519x32pfqwd1malfly7dzf55";
}; };
buildInputs = [ makeWrapper ]; vendorSha256 = "168hfdc2rfwpz2ls607bz5vsm1aw4brhwm8hmbiq1n1l2dn2dj0y";
dontBuild = true; nativeBuildInputs = [ installShellFiles ];
doCheck = false;
installPhase = '' postInstall = ''
mkdir -p $out/bin installShellCompletion completion/*
mkdir -p $out/share/zsh/site-functions
mkdir -p $out/share/bash-completion/completions
mkdir -p $out/share/fish/vendor_completions.d
cp kubectx $out/bin
cp kubens $out/bin
# Provide ZSH completions
cp completion/kubectx.zsh $out/share/zsh/site-functions/_kubectx
cp completion/kubens.zsh $out/share/zsh/site-functions/_kubens
# Provide BASH completions
cp completion/kubectx.bash $out/share/bash-completion/completions/kubectx
cp completion/kubens.bash $out/share/bash-completion/completions/kubens
# Provide FISH completions
cp completion/*.fish $out/share/fish/vendor_completions.d/
for f in $out/bin/*; do
wrapProgram $f --prefix PATH : ${makeBinPath [ kubectl ]}
done
''; '';
meta = { meta = with stdenv.lib; {
description = "Fast way to switch between clusters and namespaces in kubectl!"; description = "Fast way to switch between clusters and namespaces in kubectl!";
license = licenses.asl20; license = licenses.asl20;
homepage = "https://github.com/ahmetb/kubectx"; homepage = "https://github.com/ahmetb/kubectx";
maintainers = with maintainers; [ periklis ]; maintainers = with maintainers; [ jlesquembre ];
platforms = with platforms; unix; platforms = with platforms; unix;
}; };
} }