2019-07-22 05:02:47 -07:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2019-06-16 12:59:06 -07:00
|
|
|
|
|
|
|
bundlerApp {
|
2018-09-14 05:56:23 -07:00
|
|
|
pname = "terraform_landscape";
|
2018-01-24 23:33:46 -08:00
|
|
|
|
2018-09-14 05:56:23 -07:00
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "landscape" ];
|
2018-01-24 23:33:46 -08:00
|
|
|
|
2019-07-22 05:02:47 -07:00
|
|
|
passthru.updateScript = bundlerUpdateScript "terraform-landscape";
|
|
|
|
|
2018-01-24 23:33:46 -08:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Improve Terraform's plan output to be easier to read and understand";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/coinbase/terraform-landscape";
|
2019-10-20 05:59:00 -07:00
|
|
|
license = with licenses; asl20;
|
2019-07-22 05:02:47 -07:00
|
|
|
maintainers = with maintainers; [ mbode manveru nicknovitski ];
|
2018-01-24 23:33:46 -08:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|