summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/apr
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-08-07 15:26:13 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-08-07 15:26:13 +0000
commit223bce6491067df827a60b36e47a621a055b3d5a (patch)
tree1e7eaa45e9b324059596153734ea56b2cebd1892 /pkgs/development/libraries/apr
parent7049420fba564a778e5806aef0af8886a5088faa (diff)
* Latest httpd, apr, apr-util.
svn path=/nixpkgs/trunk/; revision=16615
Diffstat (limited to 'pkgs/development/libraries/apr')
-rw-r--r--pkgs/development/libraries/apr/default.nix15
1 files changed, 4 insertions, 11 deletions
diff --git a/pkgs/development/libraries/apr/default.nix b/pkgs/development/libraries/apr/default.nix
index 2c62232a490d..71641aaf71e3 100644
--- a/pkgs/development/libraries/apr/default.nix
+++ b/pkgs/development/libraries/apr/default.nix
@@ -1,20 +1,13 @@
{stdenv, fetchurl}:
-stdenv.mkDerivation {
- name = "apr-1.3.3";
+stdenv.mkDerivation rec {
+ name = "apr-1.3.8";
src = fetchurl {
- url = mirror://apache/apr/apr-1.3.3.tar.bz2;
- sha256 = "0dyxw3km88f0li1d39vyr09670yb12xn8j1h8dq331kc6rw3npyr";
+ url = "mirror://apache/apr/${name}.tar.bz2";
+ sha256 = "0mzsr6pv2gcp1cvppfzsd2c7zqgbw0rakjndcna49gv1dq0zgdvx";
};
- # For now, disable detection of epoll to ensure that Apache still
- # runs on Linux 2.4 kernels. Once we've dropped support for 2.4 in
- # Nixpkgs, this can go. In general, it's a problem that APR
- # detects characteristics of the build system's kernel to decide
- # what to use at runtime, since it's impure.
- #apr_cv_epoll = "no";
-
meta = {
homepage = http://apr.apache.org/;
description = "The Apache Portable Runtime library";