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
|
2016-04-18 18:42:50 +00:00
|
|
|
|
, http2Support ? true, nghttp2
|
2012-07-07 06:41:21 +00:00
|
|
|
|
, ldapSupport ? true, openldap
|
|
|
|
|
, libxml2Support ? true, libxml2
|
2018-01-06 18:40:44 +00:00
|
|
|
|
, brotliSupport ? true, brotli
|
2012-07-07 06:41:21 +00:00
|
|
|
|
, luaSupport ? false, lua5
|
|
|
|
|
}:
|
|
|
|
|
|
2018-01-06 18:40:44 +00:00
|
|
|
|
let inherit (stdenv.lib) optional optionalString;
|
2012-07-07 06:41:21 +00:00
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
assert sslSupport -> aprutil.sslSupport && openssl != null;
|
|
|
|
|
assert ldapSupport -> aprutil.ldapSupport && openldap != null;
|
2016-04-18 18:42:50 +00:00
|
|
|
|
assert http2Support -> nghttp2 != null;
|
2012-07-07 06:41:21 +00:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-03-27 12:39:56 +00:00
|
|
|
|
version = "2.4.33";
|
2012-07-07 06:41:21 +00:00
|
|
|
|
name = "apache-httpd-${version}";
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "mirror://apache/httpd/httpd-${version}.tar.bz2";
|
2018-03-27 12:39:56 +00:00
|
|
|
|
sha256 = "de02511859b00d17845b9abdd1f975d5ccb5d0b280c567da5bf2ad4b70846f05";
|
2012-07-07 06:41:21 +00:00
|
|
|
|
};
|
|
|
|
|
|
2015-10-20 21:43:49 +00:00
|
|
|
|
# FIXME: -dev depends on -doc
|
2017-07-11 09:14:14 +00:00
|
|
|
|
outputs = [ "out" "dev" "man" "doc" ];
|
2015-12-04 14:26:06 +00:00
|
|
|
|
setOutputFlags = false; # it would move $out/modules, etc.
|
2015-10-20 21:43:49 +00:00
|
|
|
|
|
2012-07-07 06:41:21 +00:00
|
|
|
|
buildInputs = [perl] ++
|
2018-01-05 19:53:32 +00:00
|
|
|
|
optional brotliSupport brotli ++
|
2015-08-21 18:12:25 +00:00
|
|
|
|
optional sslSupport openssl ++
|
2012-07-07 06:57:53 +00:00
|
|
|
|
optional ldapSupport openldap ++ # there is no --with-ldap flag
|
2015-10-23 17:57:43 +00:00
|
|
|
|
optional libxml2Support libxml2 ++
|
2016-04-18 18:42:50 +00:00
|
|
|
|
optional http2Support nghttp2 ++
|
2015-10-23 17:57:43 +00:00
|
|
|
|
optional stdenv.isDarwin libiconv;
|
2012-07-07 06:41:21 +00:00
|
|
|
|
|
2017-09-18 14:01:22 +00:00
|
|
|
|
prePatch = ''
|
2015-10-20 21:43:49 +00:00
|
|
|
|
sed -i config.layout -e "s|installbuilddir:.*|installbuilddir: $dev/share/build|"
|
|
|
|
|
'';
|
|
|
|
|
|
2012-07-07 06:57:28 +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:57:28 +00:00
|
|
|
|
|
2015-12-05 12:15:41 +00:00
|
|
|
|
preConfigure = ''
|
|
|
|
|
configureFlags="$configureFlags --includedir=$dev/include"
|
|
|
|
|
'';
|
2017-03-20 13:04:46 +00:00
|
|
|
|
|
2012-07-07 06:41:21 +00:00
|
|
|
|
configureFlags = ''
|
2016-04-16 16:41:26 +00:00
|
|
|
|
--with-apr=${apr.dev}
|
2016-04-16 16:41:43 +00:00
|
|
|
|
--with-apr-util=${aprutil.dev}
|
2016-04-16 17:50:01 +00:00
|
|
|
|
--with-z=${zlib.dev}
|
2016-04-16 17:45:26 +00:00
|
|
|
|
--with-pcre=${pcre.dev}
|
2012-07-07 06:41:21 +00:00
|
|
|
|
--disable-maintainer-mode
|
|
|
|
|
--disable-debugger-mode
|
|
|
|
|
--enable-mods-shared=all
|
2012-07-07 07:09:05 +00:00
|
|
|
|
--enable-mpms-shared=all
|
2012-10-17 13:42:08 +00:00
|
|
|
|
--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"}
|
2015-08-21 18:12:25 +00:00
|
|
|
|
${optionalString sslSupport "--enable-ssl"}
|
2016-04-18 18:42:50 +00:00
|
|
|
|
${optionalString http2Support "--enable-http2 --with-nghttp2"}
|
2012-07-07 06:41:21 +00:00
|
|
|
|
${optionalString luaSupport "--enable-lua --with-lua=${lua5}"}
|
2015-10-05 11:23:01 +00:00
|
|
|
|
${optionalString libxml2Support "--with-libxml2=${libxml2.dev}/include/libxml2"}
|
2015-12-04 14:26:06 +00:00
|
|
|
|
--docdir=$(doc)/share/doc
|
2012-07-07 06:41:21 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2015-10-20 21:43:49 +00:00
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2017-03-20 13:04:46 +00:00
|
|
|
|
stripDebugList = "lib modules bin";
|
|
|
|
|
|
2012-07-07 06:41:21 +00:00
|
|
|
|
postInstall = ''
|
2015-10-20 21:43:49 +00:00
|
|
|
|
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;
|
2013-11-04 19:25:20 +00:00
|
|
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
2016-05-16 20:30:20 +00:00
|
|
|
|
maintainers = with maintainers; [ lovek323 peti ];
|
2012-07-07 06:41:21 +00:00
|
|
|
|
};
|
|
|
|
|
}
|