ce9307a349
svn path=/nixpkgs/trunk/; revision=4662
15 lines
423 B
Nix
15 lines
423 B
Nix
{stdenv, fetchurl, cxxSupport ? true, compat185 ? true}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "db4-4.4.20";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://downloads.sleepycat.com/db-4.4.20.NC.tar.gz;
|
|
md5 = "bc1f4433cf08c956e5146037ba050581";
|
|
};
|
|
configureFlags = [
|
|
(if cxxSupport then "--enable-cxx" else "--disable-cxx")
|
|
(if cxxSupport then "--enable-compat185" else "--disable-compat185")
|
|
];
|
|
}
|