summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-09-02 15:13:23 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2023-09-02 15:21:22 +0200
commitd24fd630f2a379b1b7b1dbf9ff812db0fe4458fc (patch)
tree86182906e16a0d263ce4cd56b906d0df72defd55
parente7f35e03abd06a2faef6684d0de813370e13bda8 (diff)
downloadnixpkgs-d24fd630f2a379b1b7b1dbf9ff812db0fe4458fc.tar
nixpkgs-d24fd630f2a379b1b7b1dbf9ff812db0fe4458fc.tar.gz
nixpkgs-d24fd630f2a379b1b7b1dbf9ff812db0fe4458fc.tar.bz2
nixpkgs-d24fd630f2a379b1b7b1dbf9ff812db0fe4458fc.tar.lz
nixpkgs-d24fd630f2a379b1b7b1dbf9ff812db0fe4458fc.tar.xz
nixpkgs-d24fd630f2a379b1b7b1dbf9ff812db0fe4458fc.tar.zst
nixpkgs-d24fd630f2a379b1b7b1dbf9ff812db0fe4458fc.zip
trivy: 0.44.1 -> 0.45.0
Diff: https://github.com/aquasecurity/trivy/compare/refs/tags/v0.44.1...v0.45.0

Changelog: https://github.com/aquasecurity/trivy/releases/tag/v0.45.0
-rw-r--r--pkgs/tools/admin/trivy/default.nix21
1 files changed, 11 insertions, 10 deletions
diff --git a/pkgs/tools/admin/trivy/default.nix b/pkgs/tools/admin/trivy/default.nix
index 473cdb977bc..147fed6f127 100644
--- a/pkgs/tools/admin/trivy/default.nix
+++ b/pkgs/tools/admin/trivy/default.nix
@@ -1,23 +1,25 @@
 { lib
 , buildGoModule
 , fetchFromGitHub
+, testers
+, trivy
 }:
 
 buildGoModule rec {
   pname = "trivy";
-  version = "0.44.1";
+  version = "0.45.0";
 
   src = fetchFromGitHub {
     owner = "aquasecurity";
     repo = pname;
     rev = "refs/tags/v${version}";
-    hash = "sha256-zSrXfSG9GXReJ+XRx7FTBZovSvNq725zzWMje3maTx4=";
+    hash = "sha256-HsxcB3X8/n4Y8sU7im1nEGqMK9bVlhq5ZiF9gG+3YFs=";
   };
 
-  # hash missmatch on across linux and darwin
+  # Hash mismatch on across Linux and Darwin
   proxyVendor = true;
 
-  vendorHash = "sha256-CEr8UvQtKZo5jahLeLx3RYT592i6SwwNLRA4IRD0mYU=";
+  vendorHash = "sha256-rlMhmgnqvkKttfIzVMi1Ca/dqOdkoCF9yZbEcr8sv5I=";
 
   subPackages = [ "cmd/trivy" ];
 
@@ -32,12 +34,11 @@ buildGoModule rec {
 
   doInstallCheck = true;
 
-  installCheckPhase = ''
-    runHook preInstallCheck
-    $out/bin/trivy --help
-    $out/bin/trivy --version | grep "v${version}"
-    runHook postInstallCheck
-  '';
+  passthru.tests.version = testers.testVersion {
+    package = trivy;
+    command = "trivy --version";
+    version = "v${version}";
+  };
 
   meta = with lib; {
     homepage = "https://github.com/aquasecurity/trivy";