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