nixpkgs/pkgs/development/libraries/db4/default.nix
Eelco Dolstra 62d12a8cdb * Apply the register patch.
svn path=/nixpkgs/trunk/; revision=4375
2005-12-15 17:03:47 +00:00

16 lines
486 B
Nix

{stdenv, fetchurl, cxxSupport ? true, compat185 ? true}:
stdenv.mkDerivation {
name = "db4-4.4.16";
builder = ./builder.sh;
src = fetchurl {
url = http://downloads.sleepycat.com/db-4.4.16.NC.tar.gz;
md5 = "1466026e67b5c3eb60c8c16b7f472c17";
};
configureFlags = [
(if cxxSupport then "--enable-cxx" else "--disable-cxx")
(if cxxSupport then "--enable-compat185" else "--disable-compat185")
];
patches = [./register.patch]; # <- should be fixed in 4.4.17
}