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-03-05 01:56:30 +00:00
version = "0.11.0";
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-03-05 01:56:30 +00:00
sha256 = "0i0ds6llkzrn6a0qq53d2pbb6ghc47lnd004zqfbgn3kwiajx73b";
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 ];
};
}