From ff1c057f7aa8b635b54e2ba7b308a76e20815eca Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 12 Aug 2010 11:23:54 +0000 Subject: [PATCH] pkgs/top-level/all-packages.nix: removed lowPri modifier from python27Full The "full" version is preferrable over the "base" version in user profiles. svn path=/nixpkgs/trunk/; revision=23141 --- pkgs/top-level/all-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bd2b1951360c..c5a46a2dc10b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2123,7 +2123,7 @@ let sw_vers = if stdenv.isDarwin then darwinSwVersUtility else null; }; - python27Full = lowPrio (python27Base.override { + python27Full = python27Base.override { # FIXME: We lack ncurses support, needed, e.g., for `gpsd'. db4 = if getConfig ["python" "db4Support"] true then db4 else null; sqlite = if getConfig ["python" "sqliteSupport"] true then sqlite else null; @@ -2134,7 +2134,7 @@ let libX11 = if getConfig ["python" "tkSupport"] true then xlibs.libX11 else null; xproto = if getConfig ["python" "tkSupport"] true then xlibs.xproto else null; ncurses = if getConfig ["python" "curses"] true then ncurses else null; - }); + }; python31Base = lowPrio (makeOverridable (import ../development/interpreters/python/3.1) { inherit fetchurl stdenv zlib bzip2 gdbm;