3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/kubectx/default.nix

32 lines
779 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2018-08-12 10:24:42 +01:00
buildGoModule rec {
pname = "kubectx";
2021-07-07 01:18:33 +01:00
version = "0.9.4";
2018-08-12 10:24:42 +01:00
src = fetchFromGitHub {
owner = "ahmetb";
repo = pname;
2018-08-12 10:24:42 +01:00
rev = "v${version}";
2021-07-07 01:18:33 +01:00
sha256 = "sha256-WY0zFt76mvdzk/s2Rzqys8n+DVw6qg7V6Y8JncOUVCM=";
2018-08-12 10:24:42 +01:00
};
2021-02-25 11:39:10 +00:00
vendorSha256 = "sha256-4sQaqC0BOsDfWH3cHy2EMQNMq6qiAcbV+RwxCdcSxsg=";
doCheck = false;
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installShellCompletion completion/*
2018-08-12 10:24:42 +01:00
'';
meta = with lib; {
2018-08-12 10:24:42 +01: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 10:24:42 +01:00
platforms = with platforms; unix;
};
}