1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/networking/cluster/terragrunt/default.nix

37 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, lib, buildGoPackage, fetchFromGitHub, terraform, makeWrapper }:
2017-01-10 07:27:30 +00:00
buildGoPackage rec {
pname = "terragrunt";
2020-03-12 02:59:56 +00:00
version = "0.23.2";
2017-01-10 07:27:30 +00:00
goPackagePath = "github.com/gruntwork-io/terragrunt";
src = fetchFromGitHub {
owner = "gruntwork-io";
repo = "terragrunt";
rev = "v${version}";
2020-03-12 02:59:56 +00:00
sha256 = "1r3q7faxys0h147cr9154pcix1qgj36v41ja9hhbggm4c7vig4s1";
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
preBuild = ''
2020-02-05 18:29:09 +00:00
find go/src -name vendor | xargs -I % sh -c 'echo Removing %; rm -rf %'
buildFlagsArray+=("-ldflags" "-X main.VERSION=v${version}")
'';
2017-01-10 07:27:30 +00:00
postInstall = ''
wrapProgram $bin/bin/terragrunt \
--set TERRAGRUNT_TFPATH ${lib.getBin terraform.full}/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 ];
};
}