From fd0b020c74cbb2a43c26977b47010f5de1cb02ad Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Thu, 4 Sep 2008 04:22:20 +0000 Subject: [PATCH] Renamed python.sqlite getConfig entry to python.sqliteSupport (to make it the same style as the other 3 options nearby) svn path=/nixpkgs/trunk/; revision=12793 --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7edb8791b87..eae35ee5f79 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2005,7 +2005,7 @@ let python25 = python25base.meta.function { db4 = if getConfig ["python" "db4Support"] false then db4 else null; - sqlite = if getConfig ["python" "sqlite"] false then sqlite 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; };