3
0
Fork 0
forked from mirrors/nixpkgs

python27Packages.smugline: fix to accomodate new behavior of makeWrapper

Ticks one box in #28643
This commit is contained in:
obadz 2017-09-02 15:17:12 +01:00
parent 71d377fcb0
commit dd09675347

View file

@ -27898,7 +27898,8 @@ EOF
installPhase = ''
mkdir -p $out/bin $out/libexec
cp smugline.py $out/libexec
makeWrapper "${python.interpreter} $out/libexec/smugline.py" $out/bin/smugline \
makeWrapper ${python.interpreter} $out/bin/smugline \
--add-flags "$out/libexec/smugline.py" \
--prefix PYTHONPATH : "$PYTHONPATH"
'';
};