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

31 lines
837 B
Nix
Raw Normal View History

2020-05-19 09:20:00 +00:00
{ stdenv, rustPlatform, fetchFromGitHub, installShellFiles, Security }:
2020-03-07 18:55:51 +00:00
2020-05-19 09:20:00 +00:00
rustPlatform.buildRustPackage rec {
2020-03-07 18:55:51 +00:00
pname = "kubie";
2020-11-30 23:53:14 +00:00
version = "0.11.0";
2020-03-07 18:55:51 +00:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "sbstp";
repo = "kubie";
2020-11-30 23:53:14 +00:00
sha256 = "0862f582i08h80pm6igmi00qsacl5b9jaahh50l2i3905k7rxf5s";
2020-03-07 18:55:51 +00:00
};
2020-11-30 23:53:14 +00:00
cargoSha256 = "1b0nl4nwjza52madrfsmwivxxvz18b53kynv2fbsbh3zzbrm5fj1";
2020-03-07 18:55:51 +00:00
2020-05-19 09:20:00 +00:00
nativeBuildInputs = [ installShellFiles ];
2020-05-19 09:20:00 +00:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
2020-05-19 09:20:00 +00:00
postInstall = ''
installShellCompletion completion/kubie.bash
2020-04-28 16:53:55 +00:00
'';
2020-03-07 18:55:51 +00:00
meta = with stdenv.lib; {
2020-05-19 09:20:00 +00:00
description = "Shell independent context and namespace switcher for kubectl";
2020-03-07 18:55:51 +00:00
homepage = "https://github.com/sbstp/kubie";
license = with licenses; [ zlib ];
maintainers = with maintainers; [ illiusdope ];
};
}