2021-01-11 07:54:33 +00:00
|
|
|
|
{ lib, stdenv, fetchurl, perl, zlib, apr, aprutil, pcre, libiconv, lynx
|
2021-04-03 22:32:58 +00:00
|
|
|
|
, nixosTests
|
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
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
|
pname = "apache-httpd";
|
2021-12-31 16:55:05 +00:00
|
|
|
|
version = "2.4.52";
|
2012-07-07 06:41:21 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "mirror://apache/httpd/httpd-${version}.tar.bz2";
|
2021-12-31 16:55:05 +00:00
|
|
|
|
sha256 = "sha256-ASf33El+mYPpxRR0vtdeRWB/L4cKdnWobckK9tVy9ck=";
|
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
|
|
|
|
|
2021-10-05 15:31:40 +00:00
|
|
|
|
buildInputs = [ perl ] ++
|
|
|
|
|
lib.optional brotliSupport brotli ++
|
|
|
|
|
lib.optional sslSupport openssl ++
|
|
|
|
|
lib.optional ldapSupport openldap ++ # there is no --with-ldap flag
|
|
|
|
|
lib.optional libxml2Support libxml2 ++
|
|
|
|
|
lib.optional http2Support nghttp2 ++
|
|
|
|
|
lib.optional stdenv.isDarwin libiconv;
|
2012-07-07 06:41:21 +00:00
|
|
|
|
|
2021-10-05 15:31:40 +00:00
|
|
|
|
postPatch = ''
|
2015-10-20 21:43:49 +00:00
|
|
|
|
sed -i config.layout -e "s|installbuilddir:.*|installbuilddir: $dev/share/build|"
|
2018-10-12 00:37:55 +00:00
|
|
|
|
sed -i support/apachectl.in -e 's|@LYNX_PATH@|${lynx}/bin/lynx|'
|
2015-10-20 21:43:49 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2012-07-07 06:57:28 +00:00
|
|
|
|
# Required for ‘pthread_cancel’.
|
2021-01-15 07:07:56 +00:00
|
|
|
|
NIX_LDFLAGS = lib.optionalString (!stdenv.isDarwin) "-lgcc_s";
|
2012-07-07 06:57:28 +00:00
|
|
|
|
|
2018-07-25 21:44:21 +00: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-09 23:52:53 +00:00
|
|
|
|
"--includedir=${placeholder "dev"}/include"
|
2021-01-15 07:07:56 +00:00
|
|
|
|
(lib.enableFeature proxySupport "proxy")
|
|
|
|
|
(lib.enableFeature sslSupport "ssl")
|
|
|
|
|
(lib.withFeatureAs libxml2Support "libxml2" "${libxml2.dev}/include/libxml2")
|
2018-07-25 21:44:21 +00:00
|
|
|
|
"--docdir=$(doc)/share/doc"
|
|
|
|
|
|
2021-01-15 07:07:56 +00:00
|
|
|
|
(lib.enableFeature brotliSupport "brotli")
|
|
|
|
|
(lib.withFeatureAs brotliSupport "brotli" brotli)
|
2018-07-25 21:44:21 +00:00
|
|
|
|
|
2021-01-15 07:07:56 +00:00
|
|
|
|
(lib.enableFeature http2Support "http2")
|
|
|
|
|
(lib.withFeature http2Support "nghttp2")
|
2018-07-25 21:44:21 +00:00
|
|
|
|
|
2021-01-15 07:07:56 +00:00
|
|
|
|
(lib.enableFeature luaSupport "lua")
|
|
|
|
|
(lib.withFeatureAs luaSupport "lua" lua5)
|
2018-07-25 21:44:21 +00:00
|
|
|
|
];
|
2012-07-07 06:41:21 +00:00
|
|
|
|
|
2015-10-20 21:43:49 +00:00
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2020-04-07 03:32:19 +00:00
|
|
|
|
stripDebugList = [ "lib" "modules" "bin" ];
|
2017-03-20 13:04:46 +00:00
|
|
|
|
|
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 = {
|
2020-12-25 21:49:01 +00:00
|
|
|
|
inherit apr aprutil sslSupport proxySupport ldapSupport luaSupport lua5;
|
2021-04-03 22:32:58 +00:00
|
|
|
|
tests = {
|
|
|
|
|
acme-integration = nixosTests.acme;
|
2021-10-09 00:14:28 +00:00
|
|
|
|
proxy = nixosTests.proxy;
|
|
|
|
|
php = nixosTests.php.httpd;
|
2021-04-03 22:32:58 +00:00
|
|
|
|
};
|
2012-07-07 06:41:21 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
|
meta = with lib; {
|
2012-07-07 06:41:21 +00:00
|
|
|
|
description = "Apache HTTPD, the world's most popular web server";
|
2021-10-05 15:31:40 +00:00
|
|
|
|
homepage = "https://httpd.apache.org/";
|
2013-07-07 09:02:56 +00:00
|
|
|
|
license = licenses.asl20;
|
2021-10-05 15:31:40 +00:00
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2021-10-14 08:59:33 +00:00
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2012-07-07 06:41:21 +00:00
|
|
|
|
};
|
|
|
|
|
}
|