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

89 lines
2.6 KiB
Nix
Raw Normal View History

2015-10-23 19:57:43 +02:00
{ stdenv, fetchurl, perl, zlib, apr, aprutil, pcre, libiconv
2012-07-07 08:41:21 +02:00
, proxySupport ? true
, sslSupport ? true, openssl
, http2Support ? true, nghttp2
2012-07-07 08:41:21 +02:00
, 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;
assert http2Support -> nghttp2 != null;
2012-07-07 08:41:21 +02:00
stdenv.mkDerivation rec {
version = "2.4.23";
2012-07-07 08:41:21 +02:00
name = "apache-httpd-${version}";
src = fetchurl {
url = "mirror://apache/httpd/httpd-${version}.tar.bz2";
sha256 = "0n2yx3gjlpr4kgqx845fj6amnmg25r2l6a7rzab5hxnpmar985hc";
2012-07-07 08:41:21 +02:00
};
# FIXME: -dev depends on -doc
outputs = [ "out" "dev" "doc" ];
setOutputFlags = false; # it would move $out/modules, etc.
2012-07-07 08:41:21 +02:00
buildInputs = [perl] ++
optional sslSupport openssl ++
optional ldapSupport openldap ++ # there is no --with-ldap flag
2015-10-23 19:57:43 +02:00
optional libxml2Support libxml2 ++
optional http2Support nghttp2 ++
2015-10-23 19:57:43 +02:00
optional stdenv.isDarwin libiconv;
2012-07-07 08:41:21 +02:00
patchPhase = ''
sed -i config.layout -e "s|installbuilddir:.*|installbuilddir: $dev/share/build|"
'';
# Required for pthread_cancel.
2013-07-07 11:02:56 +02:00
NIX_LDFLAGS = stdenv.lib.optionalString (!stdenv.isDarwin) "-lgcc_s";
preConfigure = ''
configureFlags="$configureFlags --includedir=$dev/include"
'';
2012-07-07 08:41:21 +02:00
configureFlags = ''
--with-apr=${apr.dev}
--with-apr-util=${aprutil.dev}
--with-z=${zlib.dev}
--with-pcre=${pcre.dev}
2012-07-07 08:41:21 +02:00
--disable-maintainer-mode
--disable-debugger-mode
--enable-mods-shared=all
--enable-mpms-shared=all
--enable-cern-meta
--enable-imagemap
--enable-cgi
2012-07-07 08:41:21 +02:00
${optionalString proxySupport "--enable-proxy"}
${optionalString sslSupport "--enable-ssl"}
${optionalString http2Support "--enable-http2 --with-nghttp2"}
2012-07-07 08:41:21 +02:00
${optionalString luaSupport "--enable-lua --with-lua=${lua5}"}
${optionalString libxml2Support "--with-libxml2=${libxml2.dev}/include/libxml2"}
--docdir=$(doc)/share/doc
2012-07-07 08:41:21 +02:00
'';
enableParallelBuilding = true;
2012-07-07 08:41:21 +02:00
postInstall = ''
mkdir -p $doc/share/doc/httpd
mv $out/manual $doc/share/doc/httpd
mkdir -p $dev/bin
mv $out/bin/apxs $dev/bin/apxs
2012-07-07 08:41:21 +02:00
'';
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.linux ++ stdenv.lib.platforms.darwin;
maintainers = with maintainers; [ lovek323 peti ];
2012-07-07 08:41:21 +02:00
};
}