* Fix broken meta attributes.

svn path=/nixpkgs/trunk/; revision=17773
This commit is contained in:
Eelco Dolstra
2009-10-13 09:39:27 +00:00
parent 64f76f4643
commit 257ffc8e73
5 changed files with 12 additions and 10 deletions

View File

@@ -75,9 +75,11 @@ stdenv.mkDerivation ( {
opensslSupport = openssl != null;
tkSupport = (tk != null) && (tcl != null);
libPrefix = "python2.5";
};
meta = {
# List of supported platforms.
# - On Darwin, `python.exe' fails with "Bus Error".
platforms = stdenv.lib.platforms.allBut "i686-darwin";
} ;
};
} // (if stdenv.system == "i686-darwin" then { NIX_CFLAGS_COMPILE = "-msse2" ; patches = [./search-path.patch ./nolongdouble.patch]; } else {} ) )