1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-28 16:42:09 +00:00
nixpkgs/pkgs/applications/networking/cluster/terraform-landscape/default.nix
2018-01-25 08:33:46 +01:00

20 lines
546 B
Nix

{ lib, bundlerEnv, ruby }:
bundlerEnv rec {
name = "terraform-landscape-${version}";
version = (import gemset).terraform_landscape.version;
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
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 ];
platforms = platforms.unix;
};
}