nixpkgs/pkgs/applications/networking/cluster/terragrunt/default.nix

32 lines
880 B
Nix
Raw Normal View History

2017-01-10 07:27:30 +00:00
{ stdenv, lib, buildGoPackage, fetchFromGitHub, terraform, makeWrapper }:
buildGoPackage rec {
name = "terragrunt-${version}";
2017-02-23 00:07:47 +00:00
version = "0.10.3";
2017-01-10 07:27:30 +00:00
goPackagePath = "github.com/gruntwork-io/terragrunt";
src = fetchFromGitHub {
2017-01-14 05:58:16 +00:00
rev = "v${version}";
2017-01-10 07:27:30 +00:00
owner = "gruntwork-io";
repo = "terragrunt";
2017-02-23 00:07:47 +00:00
sha256 = "1vyyal4m8qwmlsvd2hriwvgly17iava0siyx7gdhy6dcs8ivc4ng";
2017-01-10 07:27:30 +00:00
};
goDeps = ./deps.nix;
2017-02-03 02:55:24 +00:00
buildInputs = [ makeWrapper ];
2017-01-10 07:27:30 +00:00
postInstall = ''
wrapProgram $bin/bin/terragrunt \
--set TERRAGRUNT_TFPATH ${lib.getBin terraform}/bin/terraform
2017-01-10 07:27:30 +00:00
'';
meta = with stdenv.lib; {
description = "A thin wrapper for Terraform that supports locking for Terraform state and enforces best practices.";
homepage = https://github.com/gruntwork-io/terragrunt/;
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
};
}