plandex-server: add git to path

When running `plandex-server` as a service it will panic as it's
unable to find git. Add it to the programs PATH.

+8
+8
pkgs/by-name/pl/plandex-server/package.nix
··· 2 2 lib, 3 3 buildGoModule, 4 4 fetchFromGitHub, 5 + makeWrapper, 5 6 git, 6 7 }: 7 8 buildGoModule rec { ··· 23 24 postInstall = '' 24 25 cp -r migrations $out/migrations 25 26 ''; 27 + 28 + postFixup = '' 29 + wrapProgram $out/bin/plandex-server \ 30 + --prefix PATH : ${lib.makeBinPath [ git ]} 31 + ''; 32 + 33 + nativeBuildInputs = [ makeWrapper ]; 26 34 27 35 nativeCheckInputs = [ git ]; 28 36