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

32 lines
779 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2018-08-12 09:24:42 +00:00
buildGoModule rec {
pname = "kubectx";
2021-02-28 18:08:22 +00:00
version = "0.9.3";
2018-08-12 09:24:42 +00:00
src = fetchFromGitHub {
owner = "ahmetb";
repo = pname;
2018-08-12 09:24:42 +00:00
rev = "v${version}";
2021-02-28 18:08:22 +00:00
sha256 = "sha256-anTogloat0YJN6LR6mww5IPwokHYoDY6L7i2pMzI8/M=";
2018-08-12 09:24:42 +00:00
};
2021-02-25 11:39:10 +00:00
vendorSha256 = "sha256-4sQaqC0BOsDfWH3cHy2EMQNMq6qiAcbV+RwxCdcSxsg=";
doCheck = false;
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installShellCompletion completion/*
2018-08-12 09:24:42 +00:00
'';
meta = with lib; {
2018-08-12 09:24:42 +00:00
description = "Fast way to switch between clusters and namespaces in kubectl!";
license = licenses.asl20;
homepage = "https://github.com/ahmetb/kubectx";
maintainers = with maintainers; [ jlesquembre ];
2018-08-12 09:24:42 +00:00
platforms = with platforms; unix;
};
}