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

31 lines
826 B
Nix
Raw Normal View History

{ lib, stdenv, rustPlatform, fetchFromGitHub, installShellFiles, Security }:
2020-03-07 19:55:51 +01:00
2020-05-19 11:20:00 +02:00
rustPlatform.buildRustPackage rec {
2020-03-07 19:55:51 +01:00
pname = "kubie";
2021-06-07 06:25:48 +02:00
version = "0.15.0";
2020-03-07 19:55:51 +01:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "sbstp";
repo = "kubie";
2021-06-07 06:25:48 +02:00
sha256 = "sha256-uNlKxcU1iCR4JzNfBatEeKMMdu9ZqvOqna0sGrcwK30=";
2020-03-07 19:55:51 +01:00
};
2021-06-07 06:25:48 +02:00
cargoSha256 = "sha256-4Xo17HlYvJLf90R0gS9EFJSJKmNHClXqAJTx9mY29KA=";
2020-03-07 19:55:51 +01:00
2020-05-19 11:20:00 +02:00
nativeBuildInputs = [ installShellFiles ];
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
2020-05-19 11:20:00 +02:00
2020-05-19 11:20:00 +02:00
postInstall = ''
installShellCompletion completion/kubie.bash
2020-04-28 18:53:55 +02:00
'';
meta = with lib; {
2020-05-19 11:20:00 +02:00
description = "Shell independent context and namespace switcher for kubectl";
2020-03-07 19:55:51 +01:00
homepage = "https://github.com/sbstp/kubie";
license = with licenses; [ zlib ];
maintainers = with maintainers; [ illiusdope ];
};
}