2004-04-05 11:34:43 +02:00
|
|
|
{stdenv, fetchurl, cxxSupport ? true, compat185 ? true}:
|
|
|
|
|
2006-06-15 14:51:15 +02:00
|
|
|
stdenv.mkDerivation ({
|
2006-02-01 15:53:25 +01:00
|
|
|
name = "db4-4.4.20";
|
2003-11-05 13:17:48 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2007-12-18 23:56:12 +01:00
|
|
|
urls = [
|
|
|
|
http://download.oracle.com/berkeley-db/db-4.4.20.NC.tar.gz
|
|
|
|
http://nix.cs.uu.nl/dist/tarballs/db-4.4.20.NC.tar.gz
|
|
|
|
];
|
2006-02-16 15:57:08 +01:00
|
|
|
md5 = "afd9243ea353bbaa04421488d3b37900";
|
2003-11-05 17:28:26 +01:00
|
|
|
};
|
2004-04-05 11:34:43 +02:00
|
|
|
configureFlags = [
|
|
|
|
(if cxxSupport then "--enable-cxx" else "--disable-cxx")
|
2007-03-21 20:25:58 +01:00
|
|
|
(if compat185 then "--enable-compat185" else "--disable-compat185")
|
2004-04-05 11:34:43 +02:00
|
|
|
];
|
2006-10-13 14:58:13 +02:00
|
|
|
} // (if stdenv.system == "i686-cygwin" then {patches = [./cygwin-4.4.patch];} else {}))
|