exaile: add python3 to PATH (#169494)

* exaile: add python3 to PATH

* Update pkgs/applications/audio/exaile/default.nix

Co-authored-by: Artturi <Artturin@artturin.com>

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Co-authored-by: Artturi <Artturin@artturin.com>
This commit is contained in:
Armeen Mahdian 2022-05-09 08:30:18 -07:00 committed by GitHub
parent 5fdc74a2ac
commit d346c95784
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -94,7 +94,7 @@ stdenv.mkDerivation rec {
postInstall = ''
wrapProgram $out/bin/exaile \
--set PYTHONPATH $PYTHONPATH \
${lib.optionalString streamripperSupport "--prefix PATH : ${lib.makeBinPath [ streamripper ]}"}
--prefix PATH : ${lib.makeBinPath ([ python3 ] ++ lib.optionals streamripperSupport [ streamripper ]) }
'';
meta = with lib; {