anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / networking / cluster / terraform-landscape / default.nix
blob903aa9abb6e2bfd08ab4e1928a6f9623994cbdcf
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "terraform_landscape";
6   gemdir = ./.;
7   exes = [ "landscape" ];
9   passthru.updateScript = bundlerUpdateScript "terraform-landscape";
11   meta = with lib; {
12     description = "Improve Terraform's plan output to be easier to read and understand";
13     homepage    = "https://github.com/coinbase/terraform-landscape";
14     license     = with licenses; asl20;
15     maintainers = with maintainers; [ mbode manveru nicknovitski ];
16     platforms   = platforms.unix;
17   };