mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
31 lines
824 B
Nix
31 lines
824 B
Nix
{ lib, stdenv, rustPlatform, fetchFromGitHub, installShellFiles, Security }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "kubie";
|
|
version = "0.22.0";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "sbstp";
|
|
repo = "kubie";
|
|
sha256 = "sha256-gqCCUK9xJJq+phYBXJ8gSwU0jclRP6RgifPt/py1PG0=";
|
|
};
|
|
|
|
cargoHash = "sha256-usS3XZLY4SngEdpvpx+Dxywh7HR8uPgTJabXH5iNsuE=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion completion/kubie.bash
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Shell independent context and namespace switcher for kubectl";
|
|
homepage = "https://github.com/sbstp/kubie";
|
|
license = with licenses; [ zlib ];
|
|
maintainers = with maintainers; [ illiusdope ];
|
|
};
|
|
}
|