From 67038ea160a8ff9f1ccad6a86afe51b51e5b4257 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sun, 17 Jan 2010 22:19:10 +0000 Subject: [PATCH] Fixing the meta platforms of python 2.6. svn path=/nixpkgs/branches/stdenv-updates/; revision=19507 --- 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 80c09722eec4..2d607926a237 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 {} ) )