nixpkgs-odroid-hc4/pkgs/applications/networking/cluster/krane/default.nix
2025-12-20 09:59:59 +11:00

19 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 ];
};
}