From b14e1f31c9604ad861c35283f258e6583876b53d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Thu, 21 Jan 2010 16:43:27 +0000 Subject: [PATCH] Fixing the 'platforms' at python 2.6. svn path=/nixpkgs/trunk/; revision=19602 --- pkgs/development/interpreters/python/2.6/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/python/2.6/default.nix b/pkgs/development/interpreters/python/2.6/default.nix index 80c09722eec..2d607926a23 100644 --- a/pkgs/development/interpreters/python/2.6/default.nix +++ b/pkgs/development/interpreters/python/2.6/default.nix @@ -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 {} ) )