summary refs log tree commit diff
diff options
context:
space:
mode:
author06kellyjac <dev@j-k.io>2021-03-09 18:04:11 +0000
committer06kellyjac <dev@j-k.io>2021-03-09 18:04:11 +0000
commit1a0347611f602cb9569c5c16cdafc72d8ae8dac1 (patch)
tree3e78e065d76062a7268f3c5f725c79172e83a2fb
parent8d327040c03fe8afbc2a2a9973af17b0d1a77bf4 (diff)
downloadnixpkgs-1a0347611f602cb9569c5c16cdafc72d8ae8dac1.tar
nixpkgs-1a0347611f602cb9569c5c16cdafc72d8ae8dac1.tar.gz
nixpkgs-1a0347611f602cb9569c5c16cdafc72d8ae8dac1.tar.bz2
nixpkgs-1a0347611f602cb9569c5c16cdafc72d8ae8dac1.tar.lz
nixpkgs-1a0347611f602cb9569c5c16cdafc72d8ae8dac1.tar.xz
nixpkgs-1a0347611f602cb9569c5c16cdafc72d8ae8dac1.tar.zst
nixpkgs-1a0347611f602cb9569c5c16cdafc72d8ae8dac1.zip
terragrunt: 0.28.7 -> 0.28.8
-rw-r--r--pkgs/applications/networking/cluster/terragrunt/default.nix13
1 files changed, 5 insertions, 8 deletions
diff --git a/pkgs/applications/networking/cluster/terragrunt/default.nix b/pkgs/applications/networking/cluster/terragrunt/default.nix
index 6bf2e476163..d92aefca84f 100644
--- a/pkgs/applications/networking/cluster/terragrunt/default.nix
+++ b/pkgs/applications/networking/cluster/terragrunt/default.nix
@@ -2,25 +2,22 @@
 
 buildGoModule rec {
   pname = "terragrunt";
-  version = "0.28.7";
+  version = "0.28.8";
 
   src = fetchFromGitHub {
     owner = "gruntwork-io";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-pM3R85gdP2eVoXx//2tKePNAi14eM8Ut+eXR+vB0Ukk=";
+    sha256 = "sha256-A/sSVStXW1b2QOb01f9sink4LMz/52W9voV4VpqQQ4E=";
   };
 
   vendorSha256 = "sha256-lRJerUYafpkXAGf8MEM8SeG3aB86mlMo7iLpeHFAnd4=";
 
   doCheck = false;
 
-  buildFlagsArray = [
-    "-ldflags="
-    "-s"
-    "-w"
-    "-X main.VERSION=v${version}"
-  ];
+  preBuild = ''
+    buildFlagsArray+=("-ldflags" "-s -w -X main.VERSION=v${version}")
+  '';
 
   doInstallCheck = true;
   installCheckPhase = ''