2006-09-11 10:45:01 +02:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-10-06 15:38:45 +02:00
|
|
|
name = "apr-1.3.3";
|
2008-02-05 12:41:49 +01:00
|
|
|
|
2006-09-11 10:45:01 +02:00
|
|
|
src = fetchurl {
|
2008-10-06 15:38:45 +02:00
|
|
|
url = mirror://apache/apr/apr-1.3.3.tar.bz2;
|
|
|
|
sha256 = "0dyxw3km88f0li1d39vyr09670yb12xn8j1h8dq331kc6rw3npyr";
|
2008-02-05 12:41:49 +01:00
|
|
|
};
|
|
|
|
|
2008-10-06 15:38:45 +02:00
|
|
|
# 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";
|
|
|
|
|
2008-02-05 12:41:49 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://apr.apache.org/;
|
|
|
|
description = "The Apache Portable Runtime library";
|
2006-09-11 10:45:01 +02:00
|
|
|
};
|
|
|
|
}
|