From 72484502065142bc66ee8f1d6a6f8c21c0339611 Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Sat, 1 Nov 2025 10:39:31 +0000 Subject: [PATCH] tests: add `fzf` dependency to package The tests script depends on fzf when asking which test to run. Explicitly make it available via `runtimeInputs`. --- tests/package.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/package.nix b/tests/package.nix index 2bb0dbef0..e8e767ce5 100644 --- a/tests/package.nix +++ b/tests/package.nix @@ -1,5 +1,6 @@ { flake, + fzf, python3, writeShellApplication, }: @@ -7,6 +8,7 @@ writeShellApplication { name = "tests"; runtimeInputs = [ python3 + fzf ]; text = '' exec python3 ${flake}/tests/tests.py "$@"