db: fix all versions with libc++3.8

This commit is contained in:
Daiderd Jordan
2016-11-13 23:02:00 +01:00
parent c7d1925b6e
commit b82ad1ba76
10 changed files with 286 additions and 106 deletions
+7 -3
View File
@@ -4,9 +4,8 @@
# Options from inherited versions
, version, sha256
, extraPatches ? [ ]
, patchSrc ? "src", extraPatches ? [ ]
, license ? stdenv.lib.licenses.sleepycat
, branch ? null
, drvArgs ? {}
}:
@@ -36,11 +35,16 @@ stdenv.mkDerivation (rec {
rm -rf $out/docs
'';
doCheck = true;
checkPhase = ''
make examples_c examples_cxx
'';
meta = with stdenv.lib; {
homepage = "http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/index.html";
description = "Berkeley DB";
license = license;
platforms = platforms.unix;
branch = branch;
};
} // drvArgs)