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

31 lines
828 B
Nix
Raw Normal View History

{ lib, stdenv, rustPlatform, fetchFromGitHub, installShellFiles, Security }:
2020-03-07 10:55:51 -08:00
2020-05-19 02:20:00 -07:00
rustPlatform.buildRustPackage rec {
2020-03-07 10:55:51 -08:00
pname = "kubie";
2021-05-21 05:31:23 -07:00
version = "0.14.1";
2020-03-07 10:55:51 -08:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "sbstp";
repo = "kubie";
2021-05-21 05:31:23 -07:00
sha256 = "0mhm2j3i2ql7dz5vx0mwab8h8zr05ar5lfzdacgnrc293g1c01aq";
2020-03-07 10:55:51 -08:00
};
2021-05-21 05:31:23 -07:00
cargoSha256 = "1rfqk7dmcz5zfq9fm9kvxf5718m0v0yfjm5a8718d40zzzvam7sy";
2020-03-07 10:55:51 -08:00
2020-05-19 02:20:00 -07:00
nativeBuildInputs = [ installShellFiles ];
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
2020-05-19 02:20:00 -07:00
2020-05-19 02:20:00 -07:00
postInstall = ''
installShellCompletion completion/kubie.bash
2020-04-28 09:53:55 -07:00
'';
meta = with lib; {
2020-05-19 02:20:00 -07:00
description = "Shell independent context and namespace switcher for kubectl";
2020-03-07 10:55:51 -08:00
homepage = "https://github.com/sbstp/kubie";
license = with licenses; [ zlib ];
maintainers = with maintainers; [ illiusdope ];
};
}