summary refs log tree commit diff
path: root/pkgs/development/libraries/db4/db4-4.5.20.nix
blob: 1b8e760886c45dc2d71159ee206032b653f668c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{stdenv, fetchurl, cxxSupport ? true, compat185 ? true}:

stdenv.mkDerivation ({
  name = "db4-4.5.20";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://download.oracle.com/berkeley-db/db-4.5.20.NC.tar.gz;
    md5 = "1bfa6256f8d546b97bef1f448ab09875";
  };
  configureFlags = [
    (if cxxSupport then "--enable-cxx" else "--disable-cxx")
    (if cxxSupport then "--enable-compat185" else "--disable-compat185")
  ];
} // (if stdenv.system == "i686-cygwin" then {patches = [./cygwin.patch];} else {}))