2012-07-07 10:41:21 +04: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-12-09 12:49:00 +04:00
|
|
|
|
version = "2.4.7";
|
2012-07-07 10:41:21 +04:00
|
|
|
|
name = "apache-httpd-${version}";
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "mirror://apache/httpd/httpd-${version}.tar.bz2";
|
2013-12-09 12:49:00 +04:00
|
|
|
|
sha256 = "06z7ij0avr8f3rvp6ifk3dn8j73i17cn4avz4fp1as43061qsdk4";
|
2012-07-07 10:41:21 +04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
buildInputs = [perl] ++
|
2012-07-07 10:57:53 +04:00
|
|
|
|
optional ldapSupport openldap ++ # there is no --with-ldap flag
|
2012-10-17 17:38:09 +04:00
|
|
|
|
optional libxml2Support libxml2;
|
2012-07-07 10:41:21 +04:00
|
|
|
|
|
2012-07-07 10:57:28 +04:00
|
|
|
|
# Required for ‘pthread_cancel’.
|
2013-07-07 13:02:56 +04:00
|
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString (!stdenv.isDarwin) "-lgcc_s";
|
2012-07-07 10:57:28 +04:00
|
|
|
|
|
2012-07-07 10:41:21 +04: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 11:09:05 +04:00
|
|
|
|
--enable-mpms-shared=all
|
2012-10-17 17:42:08 +04:00
|
|
|
|
--enable-cern-meta
|
|
|
|
|
--enable-imagemap
|
|
|
|
|
--enable-cgi
|
2012-07-07 10:41:21 +04:00
|
|
|
|
${optionalString proxySupport "--enable-proxy"}
|
|
|
|
|
${optionalString sslSupport "--enable-ssl --with-ssl=${openssl}"}
|
|
|
|
|
${optionalString luaSupport "--enable-lua --with-lua=${lua5}"}
|
2012-10-17 17:38:09 +04:00
|
|
|
|
${optionalString libxml2Support "--with-libxml2=${libxml2}/include/libxml2"}
|
2012-07-07 10:41:21 +04:00
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
|
echo "removing manual"
|
|
|
|
|
rm -rf $out/manual
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
|
inherit apr aprutil sslSupport proxySupport ldapSupport;
|
|
|
|
|
};
|
|
|
|
|
|
2013-07-07 13:02:56 +04:00
|
|
|
|
meta = with stdenv.lib; {
|
2012-07-07 10:41:21 +04:00
|
|
|
|
description = "Apache HTTPD, the world's most popular web server";
|
2013-07-07 13:02:56 +04:00
|
|
|
|
homepage = http://httpd.apache.org/;
|
|
|
|
|
license = licenses.asl20;
|
2013-11-04 23:25:20 +04:00
|
|
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
2013-07-07 13:02:56 +04:00
|
|
|
|
maintainers = with maintainers; [ lovek323 simons ];
|
2012-07-07 10:41:21 +04:00
|
|
|
|
};
|
|
|
|
|
}
|