python-2.6-bsddb: build this module with Berkeley DB 4.5

The current 'db' attribute refers to DB 4.8, which Python 2.6 does
recognize: <http://hydra.nixos.org/build/7320517/nixlog/1/raw>.
This commit is contained in:
Peter Simons 2013-12-23 21:45:46 +01:00
parent 6bc4007e60
commit 4e917cdc35

View File

@ -1,5 +1,5 @@
{ stdenv, fetchurl, zlib ? null, zlibSupport ? true, bzip2
, sqlite, tcl, tk, x11, openssl, readline, db4, ncurses, gdbm
, sqlite, tcl, tk, x11, openssl, readline, db45, ncurses, gdbm
}:
assert zlibSupport -> zlib != null;
@ -146,7 +146,7 @@ let
bsddb = buildInternalPythonModule {
moduleName = "bsddb";
deps = [ db4 ];
deps = [ db45 ];
};
crypt = buildInternalPythonModule {