mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
pythonPackages.libvirt: fix python executable path
This commit is contained in:
parent
0be8418275
commit
aa91480f45
1 changed files with 2 additions and 2 deletions
|
@ -13033,9 +13033,9 @@ let
|
|||
|
||||
buildInputs = with self; [ python pkgs.pkgconfig pkgs.libvirt lxml ];
|
||||
|
||||
buildPhase = "python setup.py build";
|
||||
buildPhase = "${python.interpreter} setup.py build";
|
||||
|
||||
installPhase = "python setup.py install --prefix=$out";
|
||||
installPhase = "${python.interpreter} setup.py install --prefix=$out";
|
||||
|
||||
meta = {
|
||||
homepage = http://www.libvirt.org/;
|
||||
|
|
Loading…
Reference in a new issue