Mark many packages (mostly python) broken because of broken dependencies.

This commit is contained in:
Peter Simons
2015-02-23 14:04:56 +01:00
parent 524e184c68
commit bf86758a42
3 changed files with 31 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
{ stdenv, fetchurl, fetchpatch, python, pkgconfig, cairo, x11, isPyPy }:
if isPyPy then throw "pycairo not supported for interpreter ${python.executable}" else stdenv.mkDerivation rec {
stdenv.mkDerivation rec {
version = "1.10.0";
name = "pycairo-${version}";
src = if python.is_py3k or false
@@ -36,4 +36,6 @@ if isPyPy then throw "pycairo not supported for interpreter ${python.executable}
'';
buildPhase = "${python.executable} waf";
installPhase = "${python.executable} waf install";
meta.broken = isPyPy;
}