2015-10-23 18:57:43 +01:00
|
|
|
|
{ stdenv, fetchurl, perl, zlib, apr, aprutil, pcre, libiconv
|
2012-07-07 07:41:21 +01:00
|
|
|
|
, proxySupport ? true
|
|
|
|
|
, sslSupport ? true, openssl
|
2016-04-18 19:42:50 +01:00
|
|
|
|
, http2Support ? true, nghttp2
|
2012-07-07 07:41:21 +01:00
|
|
|
|
, ldapSupport ? true, openldap
|
|
|
|
|
, libxml2Support ? true, libxml2
|
2018-01-06 18:40:44 +00:00
|
|
|
|
, brotliSupport ? true, brotli
|
2012-07-07 07:41:21 +01:00
|
|
|
|
, luaSupport ? false, lua5
|
|
|
|
|
}:
|
|
|
|
|
|
2018-01-06 18:40:44 +00:00
|
|
|
|
let inherit (stdenv.lib) optional optionalString;
|
2012-07-07 07:41:21 +01:00
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
assert sslSupport -> aprutil.sslSupport && openssl != null;
|
|
|
|
|
assert ldapSupport -> aprutil.ldapSupport && openldap != null;
|
2016-04-18 19:42:50 +01:00
|
|
|
|
assert http2Support -> nghttp2 != null;
|
2012-07-07 07:41:21 +01:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-07-19 01:24:59 +01:00
|
|
|
|
version = "2.4.34";
|
2012-07-07 07:41:21 +01:00
|
|
|
|
name = "apache-httpd-${version}";
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "mirror://apache/httpd/httpd-${version}.tar.bz2";
|
2018-07-19 01:24:59 +01:00
|
|
|
|
sha256 = "1w1q2smdgf6ln0x741lk5pv5r0gzrxj2iza1vslhifzy65bcjlzs";
|
2012-07-07 07:41:21 +01:00
|
|
|
|
};
|
|
|
|
|
|
2015-10-20 22:43:49 +01:00
|
|
|
|
# FIXME: -dev depends on -doc
|
2017-07-11 10:14:14 +01: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 22:43:49 +01:00
|
|
|
|
|
2012-07-07 07:41:21 +01:00
|
|
|
|
buildInputs = [perl] ++
|
2018-01-05 19:53:32 +00:00
|
|
|
|
optional brotliSupport brotli ++
|
2015-08-21 19:12:25 +01:00
|
|
|
|
optional sslSupport openssl ++
|
2012-07-07 07:57:53 +01:00
|
|
|
|
optional ldapSupport openldap ++ # there is no --with-ldap flag
|
2015-10-23 18:57:43 +01:00
|
|
|
|
optional libxml2Support libxml2 ++
|
2016-04-18 19:42:50 +01:00
|
|
|
|
optional http2Support nghttp2 ++
|
2015-10-23 18:57:43 +01:00
|
|
|
|
optional stdenv.isDarwin libiconv;
|
2012-07-07 07:41:21 +01:00
|
|
|
|
|
2017-09-18 15:01:22 +01:00
|
|
|
|
prePatch = ''
|
2015-10-20 22:43:49 +01:00
|
|
|
|
sed -i config.layout -e "s|installbuilddir:.*|installbuilddir: $dev/share/build|"
|
|
|
|
|
'';
|
|
|
|
|
|
2012-07-07 07:57:28 +01:00
|
|
|
|
# Required for ‘pthread_cancel’.
|
2013-07-07 10:02:56 +01:00
|
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString (!stdenv.isDarwin) "-lgcc_s";
|
2012-07-07 07:57:28 +01:00
|
|
|
|
|
2015-12-05 12:15:41 +00:00
|
|
|
|
preConfigure = ''
|
|
|
|
|
configureFlags="$configureFlags --includedir=$dev/include"
|
|
|
|
|
'';
|
2017-03-20 13:04:46 +00:00
|
|
|
|
|
2018-07-25 22:44:21 +01: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"
|
|
|
|
|
(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 07:41:21 +01:00
|
|
|
|
|
2015-10-20 22:43:49 +01:00
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2017-03-20 13:04:46 +00:00
|
|
|
|
stripDebugList = "lib modules bin";
|
|
|
|
|
|
2012-07-07 07:41:21 +01:00
|
|
|
|
postInstall = ''
|
2015-10-20 22:43:49 +01: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 07:41:21 +01:00
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
|
inherit apr aprutil sslSupport proxySupport ldapSupport;
|
|
|
|
|
};
|
|
|
|
|
|
2013-07-07 10:02:56 +01:00
|
|
|
|
meta = with stdenv.lib; {
|
2012-07-07 07:41:21 +01:00
|
|
|
|
description = "Apache HTTPD, the world's most popular web server";
|
2013-07-07 10:02:56 +01: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 21:30:20 +01:00
|
|
|
|
maintainers = with maintainers; [ lovek323 peti ];
|
2012-07-07 07:41:21 +01:00
|
|
|
|
};
|
|
|
|
|
}
|