summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/terragrunt
diff options
context:
space:
mode:
author06kellyjac <dev@j-k.io>2021-02-18 21:20:05 +0000
committer06kellyjac <dev@j-k.io>2021-02-18 21:20:05 +0000
commit2dae13180b821620098359d407651938844dae12 (patch)
tree1d7f01165894b290b0ab85030c426bc86a6339af /pkgs/applications/networking/cluster/terragrunt
parentbbe2fbe92914852cbffece4716f305eabe55f37b (diff)
downloadnixpkgs-2dae13180b821620098359d407651938844dae12.tar
nixpkgs-2dae13180b821620098359d407651938844dae12.tar.gz
nixpkgs-2dae13180b821620098359d407651938844dae12.tar.bz2
nixpkgs-2dae13180b821620098359d407651938844dae12.tar.lz
nixpkgs-2dae13180b821620098359d407651938844dae12.tar.xz
nixpkgs-2dae13180b821620098359d407651938844dae12.tar.zst
nixpkgs-2dae13180b821620098359d407651938844dae12.zip
terragrunt: 0.28.6 -> 0.28.7
Diffstat (limited to 'pkgs/applications/networking/cluster/terragrunt')
-rw-r--r--pkgs/applications/networking/cluster/terragrunt/default.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/pkgs/applications/networking/cluster/terragrunt/default.nix b/pkgs/applications/networking/cluster/terragrunt/default.nix
index 4004402475d..998133fcd70 100644
--- a/pkgs/applications/networking/cluster/terragrunt/default.nix
+++ b/pkgs/applications/networking/cluster/terragrunt/default.nix
@@ -2,7 +2,7 @@
 
 buildGoModule rec {
   pname = "terragrunt";
-  version = "0.28.6";
+  version = "0.28.7";
 
   src = fetchFromGitHub {
     owner = "gruntwork-io";
@@ -22,6 +22,14 @@ buildGoModule rec {
     "-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}";