fix(nix): add ssh to PATH

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2024-04-24 22:06:50 +02:00
parent 35a6fee7c0
commit d215ec0383
No known key found for this signature in database
GPG Key ID: E13DFD4B47127951

View File

@ -7,6 +7,7 @@
requests, requests,
filelock, filelock,
git, git,
openssh,
packaging, packaging,
pydantic_1, pydantic_1,
python, python,
@ -53,10 +54,10 @@ buildPythonApplication {
wrapProgram $out/bin/update \ wrapProgram $out/bin/update \
--prefix PYTHONPATH : "$PYTHONPATH" \ --prefix PYTHONPATH : "$PYTHONPATH" \
--prefix PATH : ${lib.makeBinPath [git python rsync]} --prefix PATH : ${lib.makeBinPath [git openssh python rsync]}
wrapProgram $out/bin/init \ wrapProgram $out/bin/init \
--prefix PATH : ${lib.makeBinPath [git]} --prefix PATH : ${lib.makeBinPath [git openssh]}
''; '';
meta = with lib; { meta = with lib; {