about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/krane/default.nix
blob: 0bb04197a7ee96c07a791d1c0dd374acd2cdf424 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ 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";
    changelog = "https://github.com/Shopify/krane/blob/main/CHANGELOG.md";
    license = licenses.mit;
    maintainers = with maintainers; [ kira-bruneau ];
  };
}