mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46: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,
|
flake,
|
||||||
|
fzf,
|
||||||
python3,
|
python3,
|
||||||
writeShellApplication,
|
writeShellApplication,
|
||||||
}:
|
}:
|
||||||
|
|
@ -7,6 +8,7 @@ writeShellApplication {
|
||||||
name = "tests";
|
name = "tests";
|
||||||
runtimeInputs = [
|
runtimeInputs = [
|
||||||
python3
|
python3
|
||||||
|
fzf
|
||||||
];
|
];
|
||||||
text = ''
|
text = ''
|
||||||
exec python3 ${flake}/tests/tests.py "$@"
|
exec python3 ${flake}/tests/tests.py "$@"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue