2018-10-12 02:37:55 +02:00
|
|
|
|
{ stdenv, fetchurl, perl, zlib, apr, aprutil, pcre, libiconv, lynx
|
2012-07-07 08:41:21 +02:00
|
|
|
|
, proxySupport ? true
|
|
|
|
|
, sslSupport ? true, openssl
|
2016-04-18 20:42:50 +02:00
|
|
|
|
, http2Support ? true, nghttp2
|
2012-07-07 08:41:21 +02:00
|
|
|
|
, ldapSupport ? true, openldap
|
|
|
|
|
, libxml2Support ? true, libxml2
|
2018-01-06 19:40:44 +01:00
|
|
|
|
, brotliSupport ? true, brotli
|
2012-07-07 08:41:21 +02:00
|
|
|
|
, luaSupport ? false, lua5
|
|
|
|
|
}:
|
|
|
|
|
|
2019-06-16 21:59:06 +02:00
|
|
|
|
let inherit (stdenv.lib) optional;
|
2012-07-07 08:41:21 +02:00
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
assert sslSupport -> aprutil.sslSupport && openssl != null;
|
|
|
|
|
assert ldapSupport -> aprutil.ldapSupport && openldap != null;
|
2016-04-18 20:42:50 +02:00
|
|
|
|
assert http2Support -> nghttp2 != null;
|
2012-07-07 08:41:21 +02:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-18 04:17:43 +02:00
|
|
|
|
version = "2.4.41";
|
2019-08-15 14:41:18 +02:00
|
|
|
|
pname = "apache-httpd";
|
2012-07-07 08:41:21 +02:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "mirror://apache/httpd/httpd-${version}.tar.bz2";
|
2019-08-18 04:17:43 +02:00
|
|
|
|
sha256 = "0h7a31yxwyh7h521frnmlppl0h7sh9icc3ka6vlmlcg5iwllhg8k";
|
2012-07-07 08:41:21 +02:00
|
|
|
|
};
|
|
|
|
|
|
2015-10-20 23:43:49 +02:00
|
|
|
|
# FIXME: -dev depends on -doc
|
2017-07-11 11:14:14 +02:00
|
|
|
|
outputs = [ "out" "dev" "man" "doc" ];
|
2015-12-04 15:26:06 +01:00
|
|
|
|
setOutputFlags = false; # it would move $out/modules, etc.
|
2015-10-20 23:43:49 +02:00
|
|
|
|
|
2012-07-07 08:41:21 +02:00
|
|
|
|
buildInputs = [perl] ++
|
2018-01-05 20:53:32 +01:00
|
|
|
|
optional brotliSupport brotli ++
|
2015-08-21 20:12:25 +02:00
|
|
|
|
optional sslSupport openssl ++
|
2012-07-07 08:57:53 +02:00
|
|
|
|
optional ldapSupport openldap ++ # there is no --with-ldap flag
|
2015-10-23 19:57:43 +02:00
|
|
|
|
optional libxml2Support libxml2 ++
|
2016-04-18 20:42:50 +02:00
|
|
|
|
optional http2Support nghttp2 ++
|
2015-10-23 19:57:43 +02:00
|
|
|
|
optional stdenv.isDarwin libiconv;
|
2012-07-07 08:41:21 +02:00
|
|
|
|
|
2017-09-18 16:01:22 +02:00
|
|
|
|
prePatch = ''
|
2015-10-20 23:43:49 +02:00
|
|
|
|
sed -i config.layout -e "s|installbuilddir:.*|installbuilddir: $dev/share/build|"
|
2018-10-12 02:37:55 +02:00
|
|
|
|
sed -i support/apachectl.in -e 's|@LYNX_PATH@|${lynx}/bin/lynx|'
|
2020-01-08 16:37:46 +01:00
|
|
|
|
sed -i support/apachectl.in -e 's|$HTTPD -t|$HTTPD -t -f /etc/httpd/httpd.conf|'
|
2015-10-20 23:43:49 +02:00
|
|
|
|
'';
|
|
|
|
|
|
2012-07-07 08:57:28 +02:00
|
|
|
|
# Required for ‘pthread_cancel’.
|
2013-07-07 11:02:56 +02:00
|
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString (!stdenv.isDarwin) "-lgcc_s";
|
2012-07-07 08:57:28 +02:00
|
|
|
|
|
2018-07-25 23:44:21 +02:00
|
|
|
|
configureFlags = [
|
|
|
|
|
"--with-apr=${apr.dev}"
|
|
|
|
|
"--with-apr-util=${aprutil.dev}"
|
|
|
|
|
"--with-z=${zlib.dev}"
|
|
|
|
|
"--with-pcre=${pcre.dev}"
|
|
|
|
|
"--disable-maintainer-mode"
|
|
|
|
|
"--disable-debugger-mode"
|
|
|
|
|
"--enable-mods-shared=all"
|
|
|
|
|
"--enable-mpms-shared=all"
|
|
|
|
|
"--enable-cern-meta"
|
|
|
|
|
"--enable-imagemap"
|
|
|
|
|
"--enable-cgi"
|
2019-11-10 00:52:53 +01:00
|
|
|
|
"--includedir=${placeholder "dev"}/include"
|
2018-07-25 23:44:21 +02:00
|
|
|
|
(stdenv.lib.enableFeature proxySupport "proxy")
|
|
|
|
|
(stdenv.lib.enableFeature sslSupport "ssl")
|
|
|
|
|
(stdenv.lib.withFeatureAs libxml2Support "libxml2" "${libxml2.dev}/include/libxml2")
|
|
|
|
|
"--docdir=$(doc)/share/doc"
|
|
|
|
|
|
|
|
|
|
(stdenv.lib.enableFeature brotliSupport "brotli")
|
|
|
|
|
(stdenv.lib.withFeatureAs brotliSupport "brotli" brotli)
|
|
|
|
|
|
|
|
|
|
(stdenv.lib.enableFeature http2Support "http2")
|
|
|
|
|
(stdenv.lib.withFeature http2Support "nghttp2")
|
|
|
|
|
|
|
|
|
|
(stdenv.lib.enableFeature luaSupport "lua")
|
|
|
|
|
(stdenv.lib.withFeatureAs luaSupport "lua" lua5)
|
|
|
|
|
];
|
2012-07-07 08:41:21 +02:00
|
|
|
|
|
2015-10-20 23:43:49 +02:00
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2017-03-20 14:04:46 +01:00
|
|
|
|
stripDebugList = "lib modules bin";
|
|
|
|
|
|
2012-07-07 08:41:21 +02:00
|
|
|
|
postInstall = ''
|
2015-10-20 23:43:49 +02: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 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;
|
2013-11-04 20:25:20 +01:00
|
|
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
2016-05-16 22:30:20 +02:00
|
|
|
|
maintainers = with maintainers; [ lovek323 peti ];
|
2012-07-07 08:41:21 +02:00
|
|
|
|
};
|
|
|
|
|
}
|