summary refs log tree commit diff
path: root/pkgs/development/libraries/apr-util/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/apr-util/default.nix')
-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 7f2ce3e3882..967408e0cb4 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";
+  };
+}
+