diff options
| -rw-r--r-- | nix/pkgs/blockgame-meta.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nix/pkgs/blockgame-meta.nix b/nix/pkgs/blockgame-meta.nix index 0b07d5db28..8409c37cb4 100644 --- a/nix/pkgs/blockgame-meta.nix +++ b/nix/pkgs/blockgame-meta.nix @@ -7,6 +7,7 @@ requests, filelock, git, + openssh, packaging, pydantic_1, python, @@ -53,10 +54,10 @@ buildPythonApplication { wrapProgram $out/bin/update \ --prefix PYTHONPATH : "$PYTHONPATH" \ - --prefix PATH : ${lib.makeBinPath [git python rsync]} + --prefix PATH : ${lib.makeBinPath [git openssh python rsync]} wrapProgram $out/bin/init \ - --prefix PATH : ${lib.makeBinPath [git]} + --prefix PATH : ${lib.makeBinPath [git openssh]} ''; meta = with lib; { |
