nixpkgs/pkgs/servers/http/apache-httpd/2.4.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

103 lines
3.1 KiB
Nix
Raw Permalink Normal View History

2022-09-27 02:31:10 +00:00
{ lib, stdenv, fetchurl, perl, zlib, apr, aprutil, pcre2, libiconv, lynx, which, libxcrypt
, nixosTests
2012-07-07 06:41:21 +00:00
, proxySupport ? true
, sslSupport ? true, openssl
, modTlsSupport ? false, rustls-ffi, Foundation
, 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 {
pname = "apache-httpd";
version = "2.4.59";
2012-07-07 06:41:21 +00:00
src = fetchurl {
url = "mirror://apache/httpd/httpd-${version}.tar.bz2";
hash = "sha256-7FFQHsSAKE/1L2NyWBNdMzIwp9Ipw6+m9sL5BA4yEyM=";
2012-07-07 06:41:21 +00:00
};
# FIXME: -dev depends on -doc
outputs = [ "out" "dev" "man" "doc" ];
setOutputFlags = false; # it would move $out/modules, etc.
nativeBuildInputs = [ which ];
2022-09-27 02:31:10 +00:00
buildInputs = [ perl libxcrypt ] ++
lib.optional brotliSupport brotli ++
lib.optional sslSupport openssl ++
lib.optional modTlsSupport rustls-ffi ++
lib.optional (modTlsSupport && stdenv.isDarwin) Foundation ++
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
postPatch = ''
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 07:07:56 +00:00
NIX_LDFLAGS = lib.optionalString (!stdenv.isDarwin) "-lgcc_s";
configureFlags = [
"--with-apr=${apr.dev}"
"--with-apr-util=${aprutil.dev}"
"--with-z=${zlib.dev}"
"--with-pcre=${pcre2.dev}/bin/pcre2-config"
"--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.enableFeature modTlsSupport "tls")
2021-01-15 07:07:56 +00:00
(lib.withFeatureAs libxml2Support "libxml2" "${libxml2.dev}/include/libxml2")
"--docdir=$(doc)/share/doc"
2021-01-15 07:07:56 +00:00
(lib.enableFeature brotliSupport "brotli")
(lib.withFeatureAs brotliSupport "brotli" brotli)
2021-01-15 07:07:56 +00:00
(lib.enableFeature http2Support "http2")
(lib.withFeature http2Support "nghttp2")
2021-01-15 07:07:56 +00:00
(lib.enableFeature luaSupport "lua")
(lib.withFeatureAs luaSupport "lua" lua5)
];
2012-07-07 06:41:21 +00:00
enableParallelBuilding = true;
stripDebugList = [ "lib" "modules" "bin" ];
2012-07-07 06:41:21 +00:00
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
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;
tests = {
acme-integration = nixosTests.acme;
proxy = nixosTests.proxy;
php = nixosTests.php.httpd;
};
2012-07-07 06:41:21 +00:00
};
meta = with lib; {
2012-07-07 06:41:21 +00:00
description = "Apache HTTPD, the world's most popular web server";
homepage = "https://httpd.apache.org/";
2013-07-07 09:02:56 +00:00
license = licenses.asl20;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ lovek323 ];
2012-07-07 06:41:21 +00:00
};
}