1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

blueman: fix python wrapper mockup

This commit is contained in:
Guillaume Maudoux 2017-08-15 00:11:53 +02:00 committed by Franz Pletz
parent bd54589233
commit d15a067856

View file

@ -31,10 +31,11 @@ in stdenv.mkDerivation rec {
configureFlags = [ (lib.enableFeature withPulseAudio "pulseaudio") ];
preFixup = ''
postFixup = ''
makeWrapperArgs="--prefix PATH ':' ${binPath}"
wrapPythonProgramsIn "$out/bin" "$pythonPath"
wrapPythonProgramsIn "$out/libexec" "$pythonPath"
# This mimics ../../../development/interpreters/python/wrap.sh
wrapPythonProgramsIn "$out/bin" "$out $pythonPath"
wrapPythonProgramsIn "$out/libexec" "$out $pythonPath"
'';
meta = with lib; {