mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
19 lines
531 B
Nix
19 lines
531 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;
|
|
};
|
|
}
|