summary refs log tree commit diff
path: root/pkgs/development/libraries/db/db-5.3.nix
blob: a59d28ba9630e96c3a1ee4187240324fab46f9e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchurl
, cxxSupport ? true
}:

stdenv.mkDerivation rec {
  name = "db-5.3.28";

  src = fetchurl {
    url = "http://download.oracle.com/berkeley-db/${name}.tar.gz";
    sha256 = "0a1n5hbl7027fbz5lm0vp0zzfp1hmxnz14wx3zl9563h83br5ag0";
  };

  configureFlags = [
    (if cxxSupport then "--enable-cxx" else "--disable-cxx")
  ];

  preConfigure = ''
    cd build_unix
    configureScript=../dist/configure
  '';

  postInstall = ''
    rm -rf $out/docs
  '';

  meta = with stdenv.lib; {
    homepage = "http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/index.html";
    description = "Berkeley DB";
    license = "Berkeley Database License";
    platforms = platforms.unix;
  };
}