From d346c95784d9f249e9c56478c24dc7cec3dc3798 Mon Sep 17 00:00:00 2001 From: Armeen Mahdian Date: Mon, 9 May 2022 08:30:18 -0700 Subject: [PATCH] exaile: add python3 to PATH (#169494) * exaile: add python3 to PATH * Update pkgs/applications/audio/exaile/default.nix Co-authored-by: Artturi Co-authored-by: Sandro Co-authored-by: Artturi --- pkgs/applications/audio/exaile/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/audio/exaile/default.nix b/pkgs/applications/audio/exaile/default.nix index 220a7c4eb3e..eb6dd471055 100644 --- a/pkgs/applications/audio/exaile/default.nix +++ b/pkgs/applications/audio/exaile/default.nix @@ -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; {