nixpkgs/pkgs/servers/http/apache-httpd/2.4.nix

69 lines
1.9 KiB
Nix
Raw Normal View History

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