1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00

tests: add fzf dependency to package

The tests script depends on fzf when asking which test to run.
Explicitly make it available via `runtimeInputs`.
This commit is contained in:
Matt Sturgeon 2025-11-01 10:39:31 +00:00 committed by Austin Horstman
parent 9278414dcc
commit 7248450206

View file

@ -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 "$@"