2004-04-05 11:34:43 +02:00
|
|
|
{stdenv, fetchurl, cxxSupport ? true, compat185 ? true}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2003-12-22 19:30:38 +01:00
|
|
|
name = "db4-4.2.52";
|
2003-11-05 13:17:48 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2005-02-15 15:44:19 +01:00
|
|
|
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/db-4.2.52.tar.gz;
|
2003-12-22 19:30:38 +01:00
|
|
|
md5 = "cbc77517c9278cdb47613ce8cb55779f";
|
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")
|
|
|
|
];
|
2003-11-05 13:17:48 +01:00
|
|
|
}
|