MyPaint: fix the mypaint script to use the correct python instead of calling env

This commit is contained in:
Cillian de Róiste 2013-11-23 18:09:39 +01:00
parent d0ce0f836f
commit 7f791a6449

View File

@ -22,6 +22,7 @@ stdenv.mkDerivation rec {
installPhase = ''
scons prefix=$out install
sed -i -e 's|/usr/bin/env python2.7|${python}/bin/python|' $out/bin/mypaint
wrapProgram $out/bin/mypaint --prefix PYTHONPATH : $PYTHONPATH
'';