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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
988 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2017-01-10 07:27:30 +00:00
buildGoModule rec {
pname = "terragrunt";
2022-02-25 12:18:45 +00:00
version = "0.36.2";
2017-01-10 07:27:30 +00:00
src = fetchFromGitHub {
owner = "gruntwork-io";
repo = pname;
rev = "v${version}";
2022-02-25 12:18:45 +00:00
sha256 = "sha256-Iv9ZQoU/mMYdxBuPfoYc/zQXQ14FmDBfoFwxnESC6Ns=";
2017-01-10 07:27:30 +00:00
};
2021-12-06 11:41:57 +00:00
vendorSha256 = "sha256-tNgEepKqwiqXhmoRCIEg7VJw7Y0TGt+R+6dZzd8aECg=";
2017-01-10 07:27:30 +00:00
doCheck = false;
ldflags = [ "-s" "-w" "-X main.VERSION=v${version}" ];
2021-02-18 21:20:05 +00: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 07:27:30 +00:00
license = licenses.mit;
maintainers = with maintainers; [ jk ];
2017-01-10 07:27:30 +00:00
};
}