nixpkgs/pkgs/applications/networking/cluster/terraform-landscape/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
531 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
2018-09-14 13:56:23 +01:00
pname = "terraform_landscape";
2018-01-25 07:33:46 +00:00
2018-09-14 13:56:23 +01:00
gemdir = ./.;
exes = [ "landscape" ];
2018-01-25 07:33:46 +00:00
passthru.updateScript = bundlerUpdateScript "terraform-landscape";
2018-01-25 07:33:46 +00:00
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 ];
2018-01-25 07:33:46 +00:00
platforms = platforms.unix;
};
}