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:
parent
9278414dcc
commit
7248450206
1 changed files with 2 additions and 0 deletions
|
|
@ -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 "$@"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue