mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
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:
parent
5fdc74a2ac
commit
d346c95784
1 changed files with 1 additions and 1 deletions
|
@ -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; {
|
||||
|
|
Loading…
Reference in a new issue