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 {
|
2006-02-01 15:53:25 +01:00
|
|
|
url = http://downloads.sleepycat.com/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")
|
|
|
|
(if cxxSupport then "--enable-compat185" else "--disable-compat185")
|
|
|
|
];
|
2006-06-15 14:51:15 +02:00
|
|
|
} // (if stdenv.system == "i686-cygwin" then {patches = [./cygwin.patch];} else {}))
|