-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(kubectx): pin v0.8.0 for multi-config support
- Loading branch information
Showing
3 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
channels: final: prev: | ||
|
||
with final; | ||
with final.lib; | ||
|
||
{ | ||
__dontExport = true; | ||
|
||
kubectx = stdenv.mkDerivation rec { | ||
pname = "kubectx"; | ||
version = "0.8.0"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "ahmetb"; | ||
repo = pname; | ||
rev = "v${version}"; | ||
sha256 = "1wkvmic29mkzfs6619wjs3mya8ffigwv9n1w9y7zkfvpi8gxa0a6"; | ||
}; | ||
|
||
buildInputs = [ makeWrapper ]; | ||
|
||
dontBuild = true; | ||
doCheck = false; | ||
|
||
installPhase = '' | ||
mkdir -p $out/bin | ||
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 [ channels.unstable.kubectl ]} | ||
done | ||
''; | ||
|
||
meta = { | ||
description = "Fast way to switch between clusters and namespaces in kubectl!"; | ||
license = licenses.asl20; | ||
homepage = https://github.com/ahmetb/kubectx; | ||
maintainers = with maintainers; [ periklis ]; | ||
platforms = with platforms; unix; | ||
}; | ||
}; | ||
} |