nixpkgs/pkgs/applications/networking/cluster/krane/default.nix
zowoq c5531b81bc krane: remove kubectl wrapper
defer to a user provided kubectl
2022-02-19 07:00:48 +10:00

20 lines
454 B
Nix

{ lib
, bundlerApp
, bundlerUpdateScript
}:
bundlerApp {
pname = "krane";
gemdir = ./.;
exes = [ "krane" ];
passthru.updateScript = bundlerUpdateScript "krane";
meta = with lib; {
description = "A command-line tool that helps you ship changes to a Kubernetes namespace and understand the result";
homepage = "https://github.com/Shopify/krane";
license = licenses.mit;
maintainers = with maintainers; [ kira-bruneau ];
};
}