3
0
Fork 0
forked from mirrors/nixpkgs

pycairo: add darwin to meta.platforms

This commit is contained in:
Vincent Laporte 2016-01-28 10:14:27 +01:00
parent bed2cd5e32
commit c67c27dc82

View file

@ -37,5 +37,5 @@ if (isPyPy || isPy35) then throw "pycairo not supported for interpreter ${python
buildPhase = "${python.executable} waf";
installPhase = "${python.executable} waf install";
meta.platforms = stdenv.lib.platforms.linux;
meta.platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
}