xarcan: add mesa to buildInputs (#370901)
[NixPkgs.git] / pkgs / applications / networking / cluster / terraform-landscape / default.nix
blob637a5d5262305aceed4ab610d319ce2dfdb9450a
2   lib,
3   bundlerApp,
4   bundlerUpdateScript,
5 }:
7 bundlerApp {
8   pname = "terraform_landscape";
10   gemdir = ./.;
11   exes = [ "landscape" ];
13   passthru.updateScript = bundlerUpdateScript "terraform-landscape";
15   meta = with lib; {
16     description = "Improve Terraform's plan output to be easier to read and understand";
17     homepage = "https://github.com/coinbase/terraform-landscape";
18     license = with licenses; asl20;
19     maintainers = with maintainers; [
20       mbode
21       manveru
22       nicknovitski
23     ];
24     platforms = platforms.unix;
25   };