2021-01-11 07:54:33 +00:00
|
|
|
{ lib, 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";
|
2021-12-20 23:11:27 +00:00
|
|
|
version = "0.16.0";
|
2020-03-07 18:55:51 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
owner = "sbstp";
|
|
|
|
repo = "kubie";
|
2021-12-20 23:11:27 +00:00
|
|
|
sha256 = "sha256-loVGMkB3p+xx7xRHdeSOcck+2vhV461VdNgUIpb/3O0=";
|
2020-03-07 18:55:51 +00:00
|
|
|
};
|
|
|
|
|
2021-12-20 23:11:27 +00:00
|
|
|
cargoSha256 = "sha256-BLKcuumF72MPL408+fUS+7MiTYjvSRORKNP2s0I7McI=";
|
2020-03-07 18:55:51 +00:00
|
|
|
|
2020-05-19 09:20:00 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
2020-05-19 09:20:00 +00:00
|
|
|
|
2020-05-19 09:20:00 +00:00
|
|
|
postInstall = ''
|
|
|
|
installShellCompletion completion/kubie.bash
|
2020-04-28 16:53:55 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with 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 ];
|
|
|
|
};
|
|
|
|
}
|