2006-09-11 11:17:28 +02:00
|
|
|
{ stdenv, fetchurl, apr, expat
|
2006-09-11 11:47:58 +02:00
|
|
|
, bdbSupport ? false, db4 ? null
|
2006-09-11 11:17:28 +02:00
|
|
|
}:
|
|
|
|
|
2006-09-11 11:47:58 +02:00
|
|
|
assert bdbSupport -> db4 != null;
|
2006-09-11 11:17:28 +02:00
|
|
|
|
2009-08-07 17:26:13 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "apr-util-1.3.9";
|
2008-02-05 12:41:49 +01:00
|
|
|
|
2006-09-11 11:17:28 +02:00
|
|
|
src = fetchurl {
|
2009-08-07 17:26:13 +02:00
|
|
|
url = "mirror://apache/apr/${name}.tar.bz2";
|
|
|
|
sha256 = "10zcy1an5xkjx8nflirvm2a8rnp9psckws6r7xr5wq6ffxnafhc7";
|
2006-09-11 11:17:28 +02:00
|
|
|
};
|
2008-02-05 12:41:49 +01:00
|
|
|
|
|
|
|
configureFlags = ''
|
2006-09-11 11:17:28 +02:00
|
|
|
--with-apr=${apr} --with-expat=${expat}
|
2006-09-11 11:47:58 +02:00
|
|
|
${if bdbSupport then "--with-berkeley-db=${db4}" else ""}
|
2008-02-05 12:41:49 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
inherit bdbSupport;
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://apr.apache.org/;
|
|
|
|
description = "A companion library to APR, the Apache Portable Runtime";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|