nixpkgs/pkgs/servers/http/apache-httpd/default.nix
Eelco Dolstra 3fc397461a * Work around an impurity in APR: don't detect the epoll() system
call, because then an Apache built on a 2.6 kernel won't work
  on 2.4 kernel.  In fact Apache will get into a loop segfaulting.

svn path=/nixpkgs/trunk/; revision=9780
2007-11-23 13:09:22 +00:00

35 lines
995 B
Nix

{ stdenv, fetchurl, openssl, db4, expat, perl, zlib
, sslSupport, db4Support
}:
assert sslSupport -> openssl != null;
assert db4Support -> db4 != null;
assert expat != null && perl != null;
stdenv.mkDerivation {
name = "apache-httpd-2.2.6";
builder = ./builder.sh;
src = fetchurl {
url = http://archive.apache.org/dist/httpd/httpd-2.2.6.tar.bz2;
md5 = "203bea91715064f0c787f6499d33a377";
};
inherit sslSupport db4Support;
inherit perl expat zlib;
openssl = if sslSupport then openssl else null;
db4 = if db4Support then db4 else null;
# 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 = {
description = "Apache HTTPD, the world's most popular web server";
};
}