summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/terraform-landscape/default.nix
blob: aa52350685057d4e1cf575346da0026e7bc8e9f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, bundlerApp, ruby }:
let
  version = (import ./gemset.nix).terraform_landscape.version;
in bundlerApp {
  pname = "terraform_landscape";

  inherit ruby;
  gemdir = ./.;
  exes = [ "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; apsl20;
    maintainers = with maintainers; [ mbode manveru ];
    platforms   = platforms.unix;
  };
}