about summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-01-17 22:19:10 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-01-17 22:19:10 +0000
commit67038ea160a8ff9f1ccad6a86afe51b51e5b4257 (patch)
treecb818369b628d3e11fa58a87a99372b70194c0d0 /pkgs/development/interpreters
parentbfbaa737064f04e285f81a4bb601633e2fd4aaed (diff)
downloadnixlib-67038ea160a8ff9f1ccad6a86afe51b51e5b4257.tar
nixlib-67038ea160a8ff9f1ccad6a86afe51b51e5b4257.tar.gz
nixlib-67038ea160a8ff9f1ccad6a86afe51b51e5b4257.tar.bz2
nixlib-67038ea160a8ff9f1ccad6a86afe51b51e5b4257.tar.lz
nixlib-67038ea160a8ff9f1ccad6a86afe51b51e5b4257.tar.xz
nixlib-67038ea160a8ff9f1ccad6a86afe51b51e5b4257.tar.zst
nixlib-67038ea160a8ff9f1ccad6a86afe51b51e5b4257.zip
Fixing the meta platforms of python 2.6.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19507
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/python/2.6/default.nix2
1 files changed, 1 insertions, 1 deletions
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 {} ) )