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

18 lines
448 B
Nix
Raw Normal View History

2018-09-14 12:56:23 +00:00
{ lib, bundlerApp, ruby }:
bundlerApp {
2018-09-14 12:56:23 +00:00
pname = "terraform_landscape";
2018-01-25 07:33:46 +00:00
inherit ruby;
2018-09-14 12:56:23 +00:00
gemdir = ./.;
exes = [ "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; apsl20;
2018-09-14 12:56:23 +00:00
maintainers = with maintainers; [ mbode manveru ];
2018-01-25 07:33:46 +00:00
platforms = platforms.unix;
};
}