Merge pull request #129406 from fabaff/bump-tfsec

tfsec: 0.40.7 -> 0.41.0

authored by

Mario Rodas and committed by
GitHub
2337680a 46db5c6e

+8 -4
+8 -4
pkgs/development/tools/analysis/tfsec/default.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 pname = "tfsec"; 5 - version = "0.40.7"; 5 + version = "0.41.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "tfsec"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "1cdxpmlfh76k491ldzv2flxs2wikrryr63h0zw8f6yvhkpbqf4cc"; 11 + sha256 = "sha256-MK5cWRPGty7S4pkRZJRZF5qitoPM3im8JJW2J3yQqFo="; 12 12 }; 13 13 14 14 goPackagePath = "github.com/tfsec/tfsec"; 15 15 16 - buildFlagsArray = [ "-ldflags=-s -w -X ${goPackagePath}/version.Version=${version}" ]; 16 + ldflags = [ 17 + "-w" 18 + "-s" 19 + "-X ${goPackagePath}/version.Version=${version}" 20 + ]; 17 21 18 22 meta = with lib; { 19 23 homepage = "https://github.com/tfsec/tfsec"; 20 24 description = "Static analysis powered security scanner for your terraform code"; 21 25 license = licenses.mit; 22 - maintainers = [ maintainers.marsam ]; 26 + maintainers = with maintainers; [ marsam ]; 23 27 }; 24 28 }