45ed0b7018
Since terragrunt would trigger downloading all the plugins and basing on terraform 0.12 branch whereas people could use it against 0.11 or 0.13 terraform.
29 lines
782 B
Nix
29 lines
782 B
Nix
{ lib, buildGoModule, fetchFromGitHub, makeWrapper }:
|
|
|
|
buildGoModule rec {
|
|
pname = "terragrunt";
|
|
version = "0.26.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gruntwork-io";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0bp43rsnkq2ysdl0v28i9agan738m0zk5yn8zza6js28sx0y7kns";
|
|
};
|
|
|
|
vendorSha256 = "0l85jx02dj9qvxs8l0ln5fln8vssi0fisblm5i1scz9x4a1jqg9n";
|
|
|
|
doCheck = false;
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
buildFlagsArray = [ "-ldflags=" "-X main.VERSION=v${version}" ];
|
|
|
|
meta = with 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 jk ];
|
|
};
|
|
}
|