From 06d01c6d00f4f5db39db51680d514a8fd8475407 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Wed, 22 Oct 2008 22:08:56 +0000 Subject: [PATCH] Defaukt for python-full is everything-on svn path=/nixpkgs/trunk/; revision=13104 --- pkgs/top-level/all-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dc357823261..e4601976cfd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2021,10 +2021,10 @@ let }; python25Full = python25Base.meta.function { - db4 = if getConfig ["python" "db4Support"] false then db4 else null; - sqlite = if getConfig ["python" "sqliteSupport"] false then sqlite else null; - readline = if getConfig ["python" "readlineSupport"] false then readline else null; - openssl = if getConfig ["python" "opensslSupport"] false then openssl else null; + db4 = if getConfig ["python" "db4Support"] true then db4 else null; + sqlite = if getConfig ["python" "sqliteSupport"] true then sqlite else null; + readline = if getConfig ["python" "readlineSupport"] true then readline else null; + openssl = if getConfig ["python" "opensslSupport"] true then openssl else null; }; pyrex = pyrex095;