Fixing the 'platforms' at python 2.6.

svn path=/nixpkgs/trunk/; revision=19602
This commit is contained in:
Lluís Batlle i Rossell 2010-01-21 16:43:27 +00:00
parent 28ef44c86a
commit b14e1f31c9

View file

@ -87,6 +87,6 @@ stdenv.mkDerivation ( {
};
meta = {
platforms = stdenv.lib.platforms;
platforms = stdenv.lib.platforms.all;
};
} // (if stdenv.isDarwin then { NIX_CFLAGS_COMPILE = "-msse2" ; patches = [./search-path.patch]; } else {} ) )