about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/cluster/terraform-landscape/default.nix
blob: 6973938b60de22604657ea09ea3152adcc818e99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "terraform_landscape";

  gemdir = ./.;
  exes = [ "landscape" ];

  passthru.updateScript = bundlerUpdateScript "terraform-landscape";

  meta = with lib; {
    description = "Improve Terraform's plan output to be easier to read and understand";
    homepage    = https://github.com/coinbase/terraform-landscape;
    license     = with licenses; apsl20;
    maintainers = with maintainers; [ mbode manveru nicknovitski ];
    platforms   = platforms.unix;
  };
}