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

96 lines
2.9 KiB
Nix
Raw Normal View History

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