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

stdenv.mkDerivation ({
  name = "db4-4.4.20";
  builder = ./builder.sh;
  src = fetchurl {
    urls = [
      http://download.oracle.com/berkeley-db/db-4.4.20.NC.tar.gz
      http://nix.cs.uu.nl/dist/tarballs/db-4.4.20.NC.tar.gz
    ];
    md5 = "afd9243ea353bbaa04421488d3b37900";
  };
  configureFlags = [
    (if cxxSupport then "--enable-cxx" else "--disable-cxx")
    (if compat185 then "--enable-compat185" else "--disable-compat185")
  ];
} // (if stdenv.system == "i686-cygwin" then {patches = [./cygwin-4.4.patch];} else {}))