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

pythonefl: uses python.interpreter

This commit is contained in:
José Romildo Malaquias 2018-08-28 21:42:30 -03:00
parent 4f82d135f7
commit 4637166ead

View file

@ -21,9 +21,9 @@ buildPythonPackage rec {
export NIX_CFLAGS_COMPILE="$(pkg-config --cflags efl) -I${python.pkgs.dbus-python}/include/dbus-1.0 $NIX_CFLAGS_COMPILE"
'';
preBuild = "${python}/bin/${python.executable} setup.py build_ext";
preBuild = "${python.interpreter} setup.py build_ext";
installPhase= "${python}/bin/${python.executable} setup.py install --prefix=$out";
installPhase= "${python.interpreter} setup.py install --prefix=$out";
doCheck = false;