Merge pull request #177328 from fabaff/tfsec-bump

tfsec: 1.21.2 -> 1.23.3
This commit is contained in:
Mario Rodas 2022-06-11 15:34:14 -05:00 committed by GitHub
commit 5931baebc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View File

@ -5,13 +5,13 @@
buildGoModule rec {
pname = "tfsec";
version = "1.21.2";
version = "1.23.3";
src = fetchFromGitHub {
owner = "aquasecurity";
repo = pname;
rev = "v${version}";
sha256 = "sha256-oKHGowW/LetNGtMA/sTWhmc98Tt6X475CbpqI88g4Jc=";
sha256 = "sha256-7NpnEuvYjffxapVKs9pYiLVWGyUBwFwvz/GVKURa95Y=";
};
ldflags = [
@ -21,7 +21,7 @@ buildGoModule rec {
# "-extldflags '-fno-PIC -static'"
];
vendorSha256 = "sha256-l39wXMgJLWIf0TcM6VQpcV4ckHqW/SjMy07e9w7dbgs=";
vendorSha256 = "sha256-Y6ZsLezx7rhGFkWVBpwYlfXWJU9V4u4lJ4AsyJbXTUk=";
subPackages = [
"cmd/tfsec"

View File

@ -16407,7 +16407,9 @@ with pkgs;
tflint = callPackage ../development/tools/analysis/tflint { };
tfsec = callPackage ../development/tools/analysis/tfsec { };
tfsec = callPackage ../development/tools/analysis/tfsec {
buildGoModule = buildGo118Module;
};
todoist = callPackage ../applications/misc/todoist { };