also make python 26 default on darwin

svn path=/nixpkgs/trunk/; revision=20642
This commit is contained in:
Rob Vermaas 2010-03-16 09:12:26 +00:00
parent f05adf46bd
commit 891bf14096

View file

@ -2621,8 +2621,8 @@ let
python = if getConfig ["python" "full"] false then pythonFull else pythonBase;
python25 = if getConfig ["python" "full"] false then python25Full else python25Base;
python26 = if getConfig ["python" "full"] false then python26Full else python26Base;
pythonBase = if stdenv.isDarwin then python25Base else python26Base;
pythonFull = if stdenv.isDarwin then python25Full else python26Full;
pythonBase = python26Base;
pythonFull = python26Full;
python24 = import ../development/interpreters/python/2.4 {
inherit fetchurl stdenv zlib bzip2;