* Patch for BDB on Cygwin.

svn path=/nixpkgs/trunk/; revision=5454
This commit is contained in:
Eelco Dolstra
2006-06-15 12:51:15 +00:00
parent 089877f594
commit 26832cd4ec
2 changed files with 23 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{stdenv, fetchurl, cxxSupport ? true, compat185 ? true}:
stdenv.mkDerivation {
stdenv.mkDerivation ({
name = "db4-4.4.20";
builder = ./builder.sh;
src = fetchurl {
@@ -11,4 +11,4 @@ stdenv.mkDerivation {
(if cxxSupport then "--enable-cxx" else "--disable-cxx")
(if cxxSupport then "--enable-compat185" else "--disable-compat185")
];
}
} // (if stdenv.system == "i686-cygwin" then {patches = [./cygwin.patch];} else {}))