nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python2.pkgs.pycairo: fix cross

+5 -2
+4 -1
pkgs/development/python-modules/pycairo/1.18.nix
··· 37 37 ]; 38 38 39 39 mesonFlags = [ 40 - "-Dpython=${python.interpreter}" 40 + # This is only used for figuring out what version of Python is in 41 + # use, and related stuff like figuring out what the install prefix 42 + # should be, but it does need to be able to execute Python code. 43 + "-Dpython=${python.pythonForBuild.interpreter}" 41 44 ]; 42 45 43 46 meta = with lib; {
+1 -1
pkgs/top-level/python2-packages.nix
··· 420 420 pyblosxom = callPackage ../development/python-modules/pyblosxom { }; 421 421 422 422 pycairo = callPackage ../development/python-modules/pycairo/1.18.nix { 423 - inherit (pkgs) meson; 423 + inherit (pkgs.buildPackages) meson; 424 424 }; 425 425 426 426 pycangjie = disabled pycangjie;