2012-07-07 08:41:21 +02:00
|
|
|
|
{ stdenv, fetchurl, perl, zlib, apr, aprutil, pcre
|
|
|
|
|
, proxySupport ? true
|
|
|
|
|
, sslSupport ? true, openssl
|
|
|
|
|
, ldapSupport ? true, openldap
|
|
|
|
|
, libxml2Support ? true, libxml2
|
|
|
|
|
, luaSupport ? false, lua5
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
let optional = stdenv.lib.optional;
|
|
|
|
|
optionalString = stdenv.lib.optionalString;
|
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
assert sslSupport -> aprutil.sslSupport && openssl != null;
|
|
|
|
|
assert ldapSupport -> aprutil.ldapSupport && openldap != null;
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-02-27 14:43:00 +01:00
|
|
|
|
version = "2.4.4";
|
2012-07-07 08:41:21 +02:00
|
|
|
|
name = "apache-httpd-${version}";
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "mirror://apache/httpd/httpd-${version}.tar.bz2";
|
2013-02-27 14:43:00 +01:00
|
|
|
|
sha256 = "0p35jy6mkb1q48bia719qxs5bwxv0wadyhxi61rsr93nrbgbvalj";
|
2012-07-07 08:41:21 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
buildInputs = [perl] ++
|
2012-07-07 08:57:53 +02:00
|
|
|
|
optional ldapSupport openldap ++ # there is no --with-ldap flag
|
2012-10-17 15:38:09 +02:00
|
|
|
|
optional libxml2Support libxml2;
|
2012-07-07 08:41:21 +02:00
|
|
|
|
|
2012-07-07 08:57:28 +02:00
|
|
|
|
# Required for ‘pthread_cancel’.
|
2013-07-07 11:02:56 +02:00
|
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString (!stdenv.isDarwin) "-lgcc_s";
|
2012-07-07 08:57:28 +02:00
|
|
|
|
|
2012-07-07 08:41:21 +02:00
|
|
|
|
configureFlags = ''
|
|
|
|
|
--with-apr=${apr}
|
|
|
|
|
--with-apr-util=${aprutil}
|
|
|
|
|
--with-z=${zlib}
|
|
|
|
|
--with-pcre=${pcre}
|
|
|
|
|
--disable-maintainer-mode
|
|
|
|
|
--disable-debugger-mode
|
|
|
|
|
--enable-mods-shared=all
|
2012-07-07 09:09:05 +02:00
|
|
|
|
--enable-mpms-shared=all
|
2012-10-17 15:42:08 +02:00
|
|
|
|
--enable-cern-meta
|
|
|
|
|
--enable-imagemap
|
|
|
|
|
--enable-cgi
|
2012-07-07 08:41:21 +02:00
|
|
|
|
${optionalString proxySupport "--enable-proxy"}
|
|
|
|
|
${optionalString sslSupport "--enable-ssl --with-ssl=${openssl}"}
|
|
|
|
|
${optionalString luaSupport "--enable-lua --with-lua=${lua5}"}
|
2012-10-17 15:38:09 +02:00
|
|
|
|
${optionalString libxml2Support "--with-libxml2=${libxml2}/include/libxml2"}
|
2012-07-07 08:41:21 +02:00
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
|
echo "removing manual"
|
|
|
|
|
rm -rf $out/manual
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
|
inherit apr aprutil sslSupport proxySupport ldapSupport;
|
|
|
|
|
};
|
|
|
|
|
|
2013-07-07 11:02:56 +02:00
|
|
|
|
meta = with stdenv.lib; {
|
2012-07-07 08:41:21 +02:00
|
|
|
|
description = "Apache HTTPD, the world's most popular web server";
|
2013-07-07 11:02:56 +02:00
|
|
|
|
homepage = http://httpd.apache.org/;
|
|
|
|
|
license = licenses.asl20;
|
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
|
maintainers = with maintainers; [ lovek323 simons ];
|
2012-07-07 08:41:21 +02:00
|
|
|
|
};
|
|
|
|
|
}
|