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