From eb96169435802a57684ea2c857f6c739f4cceadc Mon Sep 17 00:00:00 2001 From: Ethan Carter Edwards Date: Thu, 1 Jan 2026 13:00:38 -0500 Subject: [PATCH] nixosTests.dep-scan: reuse src for test Use the dep-scan src for the package test as the closure is already present in the store. This should marginally speed up the test plus reduces maintenance overhead of the beta tag were to ever disappear. Signed-off-by: Ethan Carter Edwards --- nixos/tests/dep-scan.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/nixos/tests/dep-scan.nix b/nixos/tests/dep-scan.nix index ffb43d85367f..8d7bdde8578e 100644 --- a/nixos/tests/dep-scan.nix +++ b/nixos/tests/dep-scan.nix @@ -22,12 +22,7 @@ # code repo to scan for vulnerabilites, could be anything # I just happened to pick the source of the package - environment.etc."dep-scan-source".source = pkgs.fetchFromGitHub { - owner = "owasp-dep-scan"; - repo = "dep-scan"; - tag = "v6.0.0b3"; - hash = "sha256-GdrFsECcBZ2J47ojM33flqOtrY3avchGpsZk6pt8Aks="; - }; + environment.etc."dep-scan-source".source = pkgs.dep-scan.src; # we need to download the database before the vm starts, otherwise # the program will try to download them at runtime.