owncast: fix ffmpeg issues with systemd

The `bash` and `which` wrapper dependencies were mistakenly removed last
package update.
The package works when run manually since you already have bash and
which in your path. Only when isolated in systemd does the issue emerge.

+3 -1
+3 -1
pkgs/servers/owncast/default.nix
··· 2 2 , buildGoModule 3 3 , fetchFromGitHub 4 4 , nixosTests 5 + , bash 6 + , which 5 7 , ffmpeg 6 8 , makeBinaryWrapper 7 9 }: ··· 25 27 26 28 postInstall = '' 27 29 wrapProgram $out/bin/owncast \ 28 - --prefix PATH : ${lib.makeBinPath [ ffmpeg ]} 30 + --prefix PATH : ${lib.makeBinPath [ bash which ffmpeg ]} 29 31 ''; 30 32 31 33 installCheckPhase = ''