nixpkgs/pkgs/applications/networking/cluster/terraform-landscape/default.nix
Renaud d7161848fe
terraform-landscape: fix meta.license
Apache 2.0 and not
Apple Public Source License 2.0
2019-10-20 14:59:00 +02:00

19 lines
529 B
Nix

{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "terraform_landscape";
gemdir = ./.;
exes = [ "landscape" ];
passthru.updateScript = bundlerUpdateScript "terraform-landscape";
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 ];
platforms = platforms.unix;
};
}