* Subversion 1.4.0. Note: Subversion 1.4 upgrades your working

copies, so it's hard to go back to 1.3.

svn path=/nixpkgs/trunk/; revision=6486
This commit is contained in:
Eelco Dolstra
2006-09-11 09:47:58 +00:00
parent 6d2f25e5f0
commit 66947ee7af
5 changed files with 57 additions and 56 deletions

View File

@@ -1,10 +1,10 @@
{ stdenv, fetchurl, apr, expat
, bdbSupport ? false, bdb ? null
, bdbSupport ? false, db4 ? null
}:
assert bdbSupport -> bdb != null;
assert bdbSupport -> db4 != null;
stdenv.mkDerivation {
(stdenv.mkDerivation {
name = "apr-util-1.2.7";
src = fetchurl {
url = http://archive.apache.org/dist/apr/apr-util-1.2.7.tar.bz2;
@@ -12,6 +12,6 @@ stdenv.mkDerivation {
};
configureFlags = "
--with-apr=${apr} --with-expat=${expat}
${if bdbSupport then "--with-berkeley-db=${bdb}" else ""}
${if bdbSupport then "--with-berkeley-db=${db4}" else ""}
";
}
}) // {inherit bdbSupport;}