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

38 lines
1023 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2017-01-10 08:27:30 +01:00
buildGoModule rec {
pname = "terragrunt";
2021-06-07 18:07:17 +02:00
version = "0.29.9";
2017-01-10 08:27:30 +01:00
src = fetchFromGitHub {
owner = "gruntwork-io";
repo = pname;
rev = "v${version}";
2021-06-07 18:07:17 +02:00
sha256 = "sha256-xgoKxA8lc72yhFVHeFkbF5j5/vGAd9TTaJ/aDEYL8Wg=";
2017-01-10 08:27:30 +01:00
};
2021-04-15 14:24:52 +02:00
vendorSha256 = "sha256-qlSCQtiGHmlk3DyETMoQbbSYhuUSZTsvAnBKuDJI8x8=";
2017-01-10 08:27:30 +01:00
doCheck = false;
2021-03-09 19:04:11 +01:00
preBuild = ''
buildFlagsArray+=("-ldflags" "-s -w -X main.VERSION=v${version}")
'';
2021-02-18 22:20:05 +01:00
doInstallCheck = true;
installCheckPhase = ''
runHook preInstallCheck
$out/bin/terragrunt --help
$out/bin/terragrunt --version | grep "v${version}"
runHook postInstallCheck
'';
meta = with lib; {
homepage = "https://terragrunt.gruntwork.io";
changelog = "https://github.com/gruntwork-io/terragrunt/releases/tag/v${version}";
description = "A thin wrapper for Terraform that supports locking for Terraform state and enforces best practices";
2017-01-10 08:27:30 +01:00
license = licenses.mit;
maintainers = with maintainers; [ jk ];
2017-01-10 08:27:30 +01:00
};
}