2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchurl
|
2014-01-31 10:25:49 +01:00
|
|
|
, cxxSupport ? true
|
|
|
|
, compat185 ? true
|
2016-11-16 22:22:10 +01:00
|
|
|
, dbmSupport ? false
|
2014-01-31 10:25:49 +01:00
|
|
|
|
|
|
|
# Options from inherited versions
|
|
|
|
, version, sha256
|
2018-07-21 02:44:44 +02:00
|
|
|
, extraPatches ? [ ]
|
2021-01-21 18:00:13 +01:00
|
|
|
, license ? lib.licenses.sleepycat
|
2016-02-07 17:20:07 +01:00
|
|
|
, drvArgs ? {}
|
2014-01-31 10:25:49 +01:00
|
|
|
}:
|
|
|
|
|
2016-02-07 17:20:07 +01:00
|
|
|
stdenv.mkDerivation (rec {
|
2014-01-31 10:25:49 +01:00
|
|
|
name = "db-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://download.oracle.com/berkeley-db/${name}.tar.gz";
|
2014-01-31 10:25:49 +01:00
|
|
|
sha256 = sha256;
|
|
|
|
};
|
2014-03-25 02:01:24 +01:00
|
|
|
|
2014-01-31 10:25:49 +01:00
|
|
|
patches = extraPatches;
|
|
|
|
|
2018-05-22 15:47:28 +02:00
|
|
|
outputs = [ "bin" "out" "dev" ];
|
2018-04-16 14:10:42 +02:00
|
|
|
|
2016-11-16 22:22:10 +01:00
|
|
|
configureFlags =
|
|
|
|
[
|
|
|
|
(if cxxSupport then "--enable-cxx" else "--disable-cxx")
|
|
|
|
(if compat185 then "--enable-compat185" else "--disable-compat185")
|
|
|
|
]
|
2021-01-21 18:00:13 +01:00
|
|
|
++ lib.optional dbmSupport "--enable-dbm"
|
|
|
|
++ lib.optional stdenv.isFreeBSD "--with-pic";
|
2014-01-31 10:25:49 +01:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
cd build_unix
|
|
|
|
configureScript=../dist/configure
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
rm -rf $out/docs
|
|
|
|
'';
|
|
|
|
|
2019-03-11 21:11:12 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-11-13 22:48:52 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
make examples_c examples_cxx
|
|
|
|
'';
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/index.html";
|
2014-01-31 10:25:49 +01:00
|
|
|
description = "Berkeley DB";
|
|
|
|
license = license;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2016-02-07 17:20:07 +01:00
|
|
|
} // drvArgs)
|