We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43f06cc commit 55013b4Copy full SHA for 55013b4
pkgs/by-name/te/terragrunt/package.nix
@@ -1,20 +1,27 @@
1
{ lib
2
, buildGoModule
3
, fetchFromGitHub
4
+, go-mockery
5
}:
6
7
buildGoModule rec {
8
pname = "terragrunt";
- version = "0.58.2";
9
+ version = "0.59.3";
10
11
src = fetchFromGitHub {
12
owner = "gruntwork-io";
13
repo = pname;
14
rev = "refs/tags/v${version}";
- hash = "sha256-Bcn3wwhAzbdO3XBrLKApAurpnpRcVJLWo6C9x/n3Nz0=";
15
+ hash = "sha256-3tXhv/W8F9ag5G7hOjuS7AOU0sdpjdasedhPgMQAV0k=";
16
};
17
- vendorHash = "sha256-ZuOgbwE32yFXPn+AqlQ397a4UZ+MWuj5ppCrDGnC3og=";
18
+ nativeBuildInputs = [ go-mockery ];
19
+
20
+ preBuild = ''
21
+ make generate-mocks
22
+ '';
23
24
+ vendorHash = "sha256-a/pWEgEcT8MFES0/Z1vFCnbSaI47ZIVjhWZbvMC/OJk=";
25
26
doCheck = false;
27
0 commit comments