1 { lib, stdenv, fetchurl, db62, xercesc, xqilla }:
3 stdenv.mkDerivation rec {
8 url = "http://download.oracle.com/berkeley-db/${pname}-${version}.tar.gz";
9 sha256 = "a8fc8f5e0c3b6e42741fa4dfc3b878c982ff8f5e5f14843f6a7e20d22e64251a";
12 outputs = [ "bin" "dev" "out" ];
16 ./incorrect-optimization.patch
23 propagatedBuildInputs = [
28 "--with-berkeleydb=${db62.out}"
29 "--with-xerces=${xercesc}"
30 "--with-xqilla=${xqilla}"
38 homepage = "https://www.oracle.com/database/berkeley-db/xml.html";
39 description = "Embeddable XML database based on Berkeley DB";
40 license = licenses.agpl3;
41 maintainers = with maintainers; [ ];
42 platforms = platforms.unix;