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

34 lines
942 B
Nix
Raw Normal View History

{ stdenv, lib, buildGoModule, fetchFromGitHub, terraform, makeWrapper }:
2017-01-10 07:27:30 +00:00
buildGoModule rec {
pname = "terragrunt";
version = "0.25.4";
2017-01-10 07:27:30 +00:00
src = fetchFromGitHub {
owner = "gruntwork-io";
repo = pname;
rev = "v${version}";
sha256 = "1c8rfx7sks8j74f3jjsl5azkhi7jvcfp8lmd9z553nal4fy8ksb6";
2017-01-10 07:27:30 +00:00
};
2020-09-07 01:47:22 +01:00
vendorSha256 = "0f466qn5vp74mwx9s4rcbw1x793w8hr5dcf2c12sgshya1bxs4nl";
2017-01-10 07:27:30 +00:00
doCheck = false;
2017-02-03 02:55:24 +00:00
buildInputs = [ makeWrapper ];
2017-01-10 07:27:30 +00:00
buildFlagsArray = [ "-ldflags=" "-X main.VERSION=v${version}" ];
2017-01-10 07:27:30 +00:00
postInstall = ''
wrapProgram $out/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/";
2017-01-10 07:27:30 +00:00
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
};
}