about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/krane/default.nix
blob: cc9d19fd8152b3d0031f045f08540edc329e1312 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ 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 ];
  };
}