2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2019-06-16 20:59:06 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
2019-07-22 13:02:47 +01: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";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/coinbase/terraform-landscape";
|
2019-10-20 13:59:00 +01:00
|
|
|
license = with licenses; asl20;
|
2019-07-22 13:02:47 +01:00
|
|
|
maintainers = with maintainers; [ mbode manveru nicknovitski ];
|
2018-01-25 07:33:46 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|