about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/cluster/terraform-landscape/default.nix
blob: 903aa9abb6e2bfd08ab4e1928a6f9623994cbdcf (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; asl20;
    maintainers = with maintainers; [ mbode manveru nicknovitski ];
    platforms   = platforms.unix;
  };
}