2024-09-19 14:19:46 +00:00
|
|
|
|
{ lib, stdenv, fetchurl, fetchpatch2, perl, zlib, apr, aprutil, pcre2, libiconv, lynx, which, libxcrypt, buildPackages
|
2021-05-20 23:08:51 +00:00
|
|
|
|
, nixosTests
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, proxySupport ? true
|
|
|
|
|
, sslSupport ? true, openssl
|
2023-04-12 12:48:02 +00:00
|
|
|
|
, modTlsSupport ? false, rustls-ffi, Foundation
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, http2Support ? true, nghttp2
|
|
|
|
|
, ldapSupport ? true, openldap
|
|
|
|
|
, libxml2Support ? true, libxml2
|
|
|
|
|
, brotliSupport ? true, brotli
|
|
|
|
|
, luaSupport ? false, lua5
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "apache-httpd";
|
2024-07-27 06:49:29 +00:00
|
|
|
|
version = "2.4.62";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "mirror://apache/httpd/httpd-${version}.tar.bz2";
|
2024-07-27 06:49:29 +00:00
|
|
|
|
hash = "sha256-Z0GI579EztgtqNtSLalGhJ4iCA1z0WyT9/TfieJXKew=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
|
patches = [
|
|
|
|
|
# Fix cross-compilation by using CC_FOR_BUILD for generator program
|
|
|
|
|
# https://issues.apache.org/bugzilla/show_bug.cgi?id=51257#c6
|
|
|
|
|
(fetchpatch2 {
|
|
|
|
|
name = "apache-httpd-cross-compile.patch";
|
|
|
|
|
url = "https://gitlab.com/buildroot.org/buildroot/-/raw/5dae8cddeecf16c791f3c138542ec51c4e627d75/package/apache/0001-cross-compile.patch";
|
|
|
|
|
hash = "sha256-KGnAa6euOt6dkZQwURyVITcfqTkDkSR8zpE97DywUUw=";
|
|
|
|
|
})
|
|
|
|
|
];
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
# FIXME: -dev depends on -doc
|
|
|
|
|
outputs = [ "out" "dev" "man" "doc" ];
|
|
|
|
|
setOutputFlags = false; # it would move $out/modules, etc.
|
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
|
nativeBuildInputs = [ which ];
|
|
|
|
|
|
2024-07-31 10:19:44 +00:00
|
|
|
|
buildInputs = [ perl libxcrypt zlib ] ++
|
2021-10-06 13:57:05 +00:00
|
|
|
|
lib.optional brotliSupport brotli ++
|
|
|
|
|
lib.optional sslSupport openssl ++
|
2023-04-12 12:48:02 +00:00
|
|
|
|
lib.optional modTlsSupport rustls-ffi ++
|
|
|
|
|
lib.optional (modTlsSupport && stdenv.isDarwin) Foundation ++
|
2021-10-06 13:57:05 +00:00
|
|
|
|
lib.optional ldapSupport openldap ++ # there is no --with-ldap flag
|
|
|
|
|
lib.optional libxml2Support libxml2 ++
|
|
|
|
|
lib.optional http2Support nghttp2 ++
|
|
|
|
|
lib.optional stdenv.isDarwin libiconv;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2021-10-06 13:57:05 +00:00
|
|
|
|
postPatch = ''
|
2020-04-24 23:36:52 +00:00
|
|
|
|
sed -i config.layout -e "s|installbuilddir:.*|installbuilddir: $dev/share/build|"
|
|
|
|
|
sed -i support/apachectl.in -e 's|@LYNX_PATH@|${lynx}/bin/lynx|'
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
# Required for ‘pthread_cancel’.
|
2021-01-15 22:18:51 +00:00
|
|
|
|
NIX_LDFLAGS = lib.optionalString (!stdenv.isDarwin) "-lgcc_s";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
|
"--with-apr=${apr.dev}"
|
|
|
|
|
"--with-apr-util=${aprutil.dev}"
|
|
|
|
|
"--with-z=${zlib.dev}"
|
2022-03-30 09:31:56 +00:00
|
|
|
|
"--with-pcre=${pcre2.dev}/bin/pcre2-config"
|
2020-04-24 23:36:52 +00:00
|
|
|
|
"--disable-maintainer-mode"
|
|
|
|
|
"--disable-debugger-mode"
|
|
|
|
|
"--enable-mods-shared=all"
|
|
|
|
|
"--enable-mpms-shared=all"
|
|
|
|
|
"--enable-cern-meta"
|
|
|
|
|
"--enable-imagemap"
|
|
|
|
|
"--enable-cgi"
|
|
|
|
|
"--includedir=${placeholder "dev"}/include"
|
2021-01-15 22:18:51 +00:00
|
|
|
|
(lib.enableFeature proxySupport "proxy")
|
|
|
|
|
(lib.enableFeature sslSupport "ssl")
|
2023-04-12 12:48:02 +00:00
|
|
|
|
(lib.enableFeature modTlsSupport "tls")
|
2021-01-15 22:18:51 +00:00
|
|
|
|
(lib.withFeatureAs libxml2Support "libxml2" "${libxml2.dev}/include/libxml2")
|
2020-04-24 23:36:52 +00:00
|
|
|
|
"--docdir=$(doc)/share/doc"
|
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
|
(lib.enableFeature brotliSupport "brotli")
|
|
|
|
|
(lib.withFeatureAs brotliSupport "brotli" brotli)
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
|
(lib.enableFeature http2Support "http2")
|
|
|
|
|
(lib.withFeature http2Support "nghttp2")
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
|
(lib.enableFeature luaSupport "lua")
|
|
|
|
|
(lib.withFeatureAs luaSupport "lua" lua5)
|
2024-09-19 14:19:46 +00:00
|
|
|
|
] ++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
|
|
|
|
|
# skip bad config check when cross compiling
|
|
|
|
|
# https://gitlab.com/buildroot.org/buildroot/-/blob/5dae8cddeecf16c791f3c138542ec51c4e627d75/package/apache/apache.mk#L23
|
|
|
|
|
"ap_cv_void_ptr_lt_long=no"
|
2020-04-24 23:36:52 +00:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
|
|
stripDebugList = [ "lib" "modules" "bin" ];
|
|
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
|
mkdir -p $doc/share/doc/httpd
|
|
|
|
|
mv $out/manual $doc/share/doc/httpd
|
|
|
|
|
mkdir -p $dev/bin
|
|
|
|
|
mv $out/bin/apxs $dev/bin/apxs
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
passthru = {
|
2020-12-27 14:24:52 +00:00
|
|
|
|
inherit apr aprutil sslSupport proxySupport ldapSupport luaSupport lua5;
|
2021-05-20 23:08:51 +00:00
|
|
|
|
tests = {
|
|
|
|
|
acme-integration = nixosTests.acme;
|
2021-12-06 16:07:01 +00:00
|
|
|
|
proxy = nixosTests.proxy;
|
|
|
|
|
php = nixosTests.php.httpd;
|
2021-05-20 23:08:51 +00:00
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
description = "Apache HTTPD, the world's most popular web server";
|
2021-10-06 13:57:05 +00:00
|
|
|
|
homepage = "https://httpd.apache.org/";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
license = licenses.asl20;
|
2021-10-06 13:57:05 +00:00
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2021-10-17 02:12:59 +00:00
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
}
|