2022-09-27 04:31:10 +02:00
|
|
|
|
{ lib, stdenv, fetchurl, perl, zlib, apr, aprutil, pcre2, libiconv, lynx, which, libxcrypt
|
2021-04-04 00:32:58 +02:00
|
|
|
|
, nixosTests
|
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
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
|
pname = "apache-httpd";
|
2022-06-10 16:08:47 +02:00
|
|
|
|
version = "2.4.54";
|
2012-07-07 08:41:21 +02:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "mirror://apache/httpd/httpd-${version}.tar.bz2";
|
2022-06-10 16:08:47 +02:00
|
|
|
|
sha256 = "sha256-6zl/7u/MryVPjUXeN2jZ1o6Oc4UcSa/VtxdtHs+Aw0A=";
|
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
|
|
|
|
|
2022-03-14 12:36:33 +01:00
|
|
|
|
nativeBuildInputs = [ which ];
|
|
|
|
|
|
2022-09-27 04:31:10 +02:00
|
|
|
|
buildInputs = [ perl libxcrypt ] ++
|
2021-10-05 17:31:40 +02:00
|
|
|
|
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 08:41:21 +02:00
|
|
|
|
|
2021-10-05 17:31:40 +02:00
|
|
|
|
postPatch = ''
|
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|'
|
2015-10-20 23:43:49 +02:00
|
|
|
|
'';
|
|
|
|
|
|
2012-07-07 08:57:28 +02:00
|
|
|
|
# Required for ‘pthread_cancel’.
|
2021-01-15 08:07:56 +01:00
|
|
|
|
NIX_LDFLAGS = 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}"
|
2022-03-14 12:36:33 +01:00
|
|
|
|
"--with-pcre=${pcre2.dev}/bin/pcre2-config"
|
2018-07-25 23:44:21 +02:00
|
|
|
|
"--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"
|
2021-01-15 08:07:56 +01:00
|
|
|
|
(lib.enableFeature proxySupport "proxy")
|
|
|
|
|
(lib.enableFeature sslSupport "ssl")
|
|
|
|
|
(lib.withFeatureAs libxml2Support "libxml2" "${libxml2.dev}/include/libxml2")
|
2018-07-25 23:44:21 +02:00
|
|
|
|
"--docdir=$(doc)/share/doc"
|
|
|
|
|
|
2021-01-15 08:07:56 +01:00
|
|
|
|
(lib.enableFeature brotliSupport "brotli")
|
|
|
|
|
(lib.withFeatureAs brotliSupport "brotli" brotli)
|
2018-07-25 23:44:21 +02:00
|
|
|
|
|
2021-01-15 08:07:56 +01:00
|
|
|
|
(lib.enableFeature http2Support "http2")
|
|
|
|
|
(lib.withFeature http2Support "nghttp2")
|
2018-07-25 23:44:21 +02:00
|
|
|
|
|
2021-01-15 08:07:56 +01:00
|
|
|
|
(lib.enableFeature luaSupport "lua")
|
|
|
|
|
(lib.withFeatureAs luaSupport "lua" lua5)
|
2018-07-25 23:44:21 +02:00
|
|
|
|
];
|
2012-07-07 08:41:21 +02:00
|
|
|
|
|
2015-10-20 23:43:49 +02:00
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2020-04-07 05:32:19 +02:00
|
|
|
|
stripDebugList = [ "lib" "modules" "bin" ];
|
2017-03-20 14:04:46 +01:00
|
|
|
|
|
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 = {
|
2020-12-25 22:49:01 +01:00
|
|
|
|
inherit apr aprutil sslSupport proxySupport ldapSupport luaSupport lua5;
|
2021-04-04 00:32:58 +02:00
|
|
|
|
tests = {
|
|
|
|
|
acme-integration = nixosTests.acme;
|
2021-10-09 02:14:28 +02:00
|
|
|
|
proxy = nixosTests.proxy;
|
|
|
|
|
php = nixosTests.php.httpd;
|
2021-04-04 00:32:58 +02:00
|
|
|
|
};
|
2012-07-07 08:41:21 +02:00
|
|
|
|
};
|
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
|
meta = with lib; {
|
2012-07-07 08:41:21 +02:00
|
|
|
|
description = "Apache HTTPD, the world's most popular web server";
|
2021-10-05 17:31:40 +02:00
|
|
|
|
homepage = "https://httpd.apache.org/";
|
2013-07-07 11:02:56 +02:00
|
|
|
|
license = licenses.asl20;
|
2021-10-05 17:31:40 +02:00
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2021-10-14 10:59:33 +02:00
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2012-07-07 08:41:21 +02:00
|
|
|
|
};
|
|
|
|
|
}
|