Author: chaoflow
Date: Fri Oct 14 09:47:30 2011
New Revision: 29833
URL: https://nixos.org/websvn/nix/?rev=29833&sc=1

Log:
python26Full and explicit python27Full

Modified:
   nixpkgs/trunk/pkgs/top-level/all-packages.nix

Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/all-packages.nix       Fri Oct 14 07:55:02 
2011        (r29832)
+++ nixpkgs/trunk/pkgs/top-level/all-packages.nix       Fri Oct 14 09:47:30 
2011        (r29833)
@@ -2586,8 +2586,16 @@
     sw_vers = if stdenv.isDarwin then pkgs.darwinSwVersUtility else null;
   };
 
-  pythonFull = callPackage ../development/interpreters/python/wrapper.nix {
-    extraLibs = lib.attrValues python.modules;
+  pythonFull = python27Full;
+
+  python26Full = callPackage ../development/interpreters/python/wrapper.nix {
+    extraLibs = lib.attrValues python26.modules;
+    python = python26;
+  };
+
+  python27Full = callPackage ../development/interpreters/python/wrapper.nix {
+    extraLibs = lib.attrValues python27.modules;
+    python = python27;
   };
 
   pythonhomeWrapper = callPackage 
../development/interpreters/python/pythonhome-wrapper.nix { };
_______________________________________________
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to