Merge pull request #250332 from fabaff/trivy-bump

trivy: 0.44.0 -> 0.44.1

authored by Fabian Affolter and committed by GitHub a890a6af 638658ce

+8 -6
+8 -6
pkgs/tools/admin/trivy/default.nix
··· 5 6 buildGoModule rec { 7 pname = "trivy"; 8 - version = "0.44.0"; 9 10 src = fetchFromGitHub { 11 owner = "aquasecurity"; 12 repo = pname; 13 - rev = "v${version}"; 14 - sha256 = "sha256-qxtYYFhABrkJlwWBx4ak7xnaqg7x+D1fUF1gcJFK0e4="; 15 }; 16 # hash missmatch on across linux and darwin 17 proxyVendor = true; 18 - vendorHash = "sha256-mE+GpD9vMhjVQsH+mckU6GhNiLMDV5H31Jj1/HLBSEs="; 19 20 subPackages = [ "cmd/trivy" ]; 21 22 ldflags = [ 23 "-s" 24 "-w" 25 - "-X main.version=v${version}" 26 ]; 27 28 # Tests require network access ··· 49 application dependencies (Bundler, Composer, npm, yarn, etc.). 50 ''; 51 license = licenses.asl20; 52 - maintainers = with maintainers; [ jk ]; 53 }; 54 }
··· 5 6 buildGoModule rec { 7 pname = "trivy"; 8 + version = "0.44.1"; 9 10 src = fetchFromGitHub { 11 owner = "aquasecurity"; 12 repo = pname; 13 + rev = "refs/tags/v${version}"; 14 + hash = "sha256-zSrXfSG9GXReJ+XRx7FTBZovSvNq725zzWMje3maTx4="; 15 }; 16 + 17 # hash missmatch on across linux and darwin 18 proxyVendor = true; 19 + 20 + vendorHash = "sha256-CEr8UvQtKZo5jahLeLx3RYT592i6SwwNLRA4IRD0mYU="; 21 22 subPackages = [ "cmd/trivy" ]; 23 24 ldflags = [ 25 "-s" 26 "-w" 27 + "-X=main.version=v${version}" 28 ]; 29 30 # Tests require network access ··· 51 application dependencies (Bundler, Composer, npm, yarn, etc.). 52 ''; 53 license = licenses.asl20; 54 + maintainers = with maintainers; [ fab jk ]; 55 }; 56 }