2006-02-28 13:01:39 +01:00
|
|
|
{ stdenv, fetchurl, openssl, db4, expat, perl, zlib
|
2003-11-05 13:17:48 +01:00
|
|
|
, sslSupport, db4Support
|
|
|
|
}:
|
2003-12-21 22:25:38 +01:00
|
|
|
|
2004-03-27 16:47:48 +01:00
|
|
|
assert sslSupport -> openssl != null;
|
|
|
|
assert db4Support -> db4 != null;
|
|
|
|
assert expat != null && perl != null;
|
2003-12-21 22:25:38 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2008-01-30 00:28:06 +01:00
|
|
|
name = "apache-httpd-2.2.8";
|
2003-11-05 13:17:48 +01:00
|
|
|
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2008-01-30 00:28:06 +01:00
|
|
|
url = http://archive.apache.org/dist/httpd/httpd-2.2.8.tar.bz2;
|
|
|
|
md5 = "76d2598a4797163d07cd50e5304aa7cd";
|
2003-11-05 17:28:26 +01:00
|
|
|
};
|
2003-11-05 13:17:48 +01:00
|
|
|
|
2004-03-27 16:47:48 +01:00
|
|
|
inherit sslSupport db4Support;
|
2003-12-21 22:25:38 +01:00
|
|
|
|
2006-02-28 13:01:39 +01:00
|
|
|
inherit perl expat zlib;
|
2004-03-27 16:47:48 +01:00
|
|
|
openssl = if sslSupport then openssl else null;
|
|
|
|
db4 = if db4Support then db4 else null;
|
2006-10-11 18:45:55 +02:00
|
|
|
|
2007-11-23 14:09:22 +01: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";
|
|
|
|
|
2006-10-11 18:45:55 +02:00
|
|
|
meta = {
|
|
|
|
description = "Apache HTTPD, the world's most popular web server";
|
|
|
|
};
|
2003-11-05 13:17:48 +01:00
|
|
|
}
|