aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/apr-util
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2008-02-05 11:41:49 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2008-02-05 11:41:49 +0000
commitcb0c387ce2cfb163c91a6d5a2713aebb7cfd92d6 (patch)
treea5f27415684cc5b2f3cfdd0f35adeae36c45270b /pkgs/development/libraries/apr-util
parent937f8663ac003c228062970a03d425abc506a27e (diff)
* Updated Apache-related packages.
svn path=/nixpkgs/trunk/; revision=10502
Diffstat (limited to 'pkgs/development/libraries/apr-util')
-rw-r--r--pkgs/development/libraries/apr-util/default.nix26
1 files changed, 19 insertions, 7 deletions
diff --git a/pkgs/development/libraries/apr-util/default.nix b/pkgs/development/libraries/apr-util/default.nix
index 7f2ce3e3882a..967408e0cb43 100644
--- a/pkgs/development/libraries/apr-util/default.nix
+++ b/pkgs/development/libraries/apr-util/default.nix
@@ -4,14 +4,26 @@
assert bdbSupport -> db4 != null;
-(stdenv.mkDerivation {
- name = "apr-util-1.2.7";
+stdenv.mkDerivation {
+ name = "apr-util-1.2.12";
+
src = fetchurl {
- url = http://archive.apache.org/dist/apr/apr-util-1.2.7.tar.bz2;
- md5 = "a4c527f08ae2298e62a88472291bf066";
+ url = http://archive.apache.org/dist/apr/apr-util-1.2.12.tar.bz2;
+ sha256 = "152xwaxikp22acz7ypqsvlyjxhak6p40805wwbw7hcg1gyg2scyl";
};
- configureFlags = "
+
+ configureFlags = ''
--with-apr=${apr} --with-expat=${expat}
${if bdbSupport then "--with-berkeley-db=${db4}" else ""}
- ";
-}) // {inherit bdbSupport;}
+ '';
+
+ passthru = {
+ inherit bdbSupport;
+ };
+
+ meta = {
+ homepage = http://apr.apache.org/;
+ description = "A companion library to APR, the Apache Portable Runtime";
+ };
+}
+