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

32 lines
889 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-01-29 13:09:17 +00:00
version = "0.9.6";
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-01-29 13:09:17 +00:00
sha256 = "0x4qpf4jqrm55rg5xifk6gz4gy42506k5g1l5461xln0rsmifpkf";
2017-01-10 07:27:30 +00:00
};
goDeps = ./deps.nix;
buildInputs = [ makeWrapper terraform ];
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 ];
};
}