{ lib, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "terragrunt"; version = "0.42.4"; src = fetchFromGitHub { owner = "gruntwork-io"; repo = pname; rev = "v${version}"; sha256 = "sha256-PaCI39Z2WaHZ6IYRxFNZvG9c40pWzNbwoHrJFXLOqMk="; }; vendorSha256 = "sha256-ByFn2j2m5dON0No6mt1QiYm4vMRSymS5Tezaws9B9c4="; doCheck = false; ldflags = [ "-s" "-w" "-X main.VERSION=v${version}" ]; 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"; license = licenses.mit; maintainers = with maintainers; [ jk ]; }; }