summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/2.5/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/interpreters/python/2.5/default.nix')
-rw-r--r--pkgs/development/interpreters/python/2.5/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/python/2.5/default.nix b/pkgs/development/interpreters/python/2.5/default.nix
index e74ddf2214c1..592915b41df4 100644
--- a/pkgs/development/interpreters/python/2.5/default.nix
+++ b/pkgs/development/interpreters/python/2.5/default.nix
@@ -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 {} ) )