summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2008-10-22 22:08:56 +0000
committerMichael Raskin <7c6f434c@mail.ru>2008-10-22 22:08:56 +0000
commit06d01c6d00f4f5db39db51680d514a8fd8475407 (patch)
tree1f450e493f3ace47b151ca5244afe75189e40e04
parentd5ee2e2dbaada318f4905650201b813cb1411be8 (diff)
downloadnixpkgs-06d01c6d00f4f5db39db51680d514a8fd8475407.tar
nixpkgs-06d01c6d00f4f5db39db51680d514a8fd8475407.tar.gz
nixpkgs-06d01c6d00f4f5db39db51680d514a8fd8475407.tar.bz2
nixpkgs-06d01c6d00f4f5db39db51680d514a8fd8475407.tar.lz
nixpkgs-06d01c6d00f4f5db39db51680d514a8fd8475407.tar.xz
nixpkgs-06d01c6d00f4f5db39db51680d514a8fd8475407.tar.zst
nixpkgs-06d01c6d00f4f5db39db51680d514a8fd8475407.zip
Defaukt for python-full is everything-on
svn path=/nixpkgs/trunk/; revision=13104
-rw-r--r--pkgs/top-level/all-packages.nix8
1 files 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;