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

102 lines
2.9 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, perl, zlib, apr, aprutil, pcre, libiconv, lynx
, nixosTests
2012-07-07 06:41:21 +00:00
, proxySupport ? true
, sslSupport ? true, openssl
, 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
}:
2021-01-15 07:07:56 +00:00
let inherit (lib) optional;
2012-07-07 06:41:21 +00:00
in
assert sslSupport -> aprutil.sslSupport && openssl != null;
assert ldapSupport -> aprutil.ldapSupport && openldap != null;
assert http2Support -> nghttp2 != null;
2012-07-07 06:41:21 +00:00
stdenv.mkDerivation rec {
pname = "apache-httpd";
2021-10-05 11:23:37 +00:00
version = "2.4.50";
2012-07-07 06:41:21 +00:00
src = fetchurl {
url = "mirror://apache/httpd/httpd-${version}.tar.bz2";
2021-10-05 11:23:37 +00:00
sha256 = "6a2817c070c606682eb53ed963511407d3c3d7a379cdf855971467b00fb3890f";
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.
2012-07-07 06:41:21 +00:00
buildInputs = [perl] ++
2018-01-05 19:53:32 +00:00
optional brotliSupport brotli ++
optional sslSupport openssl ++
optional ldapSupport openldap ++ # there is no --with-ldap flag
2015-10-23 17:57:43 +00:00
optional libxml2Support libxml2 ++
optional http2Support nghttp2 ++
2015-10-23 17:57:43 +00:00
optional stdenv.isDarwin libiconv;
2012-07-07 06:41:21 +00:00
prePatch = ''
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=${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")
"--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;
};
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 = "http://httpd.apache.org/";
2013-07-07 09:02:56 +00:00
license = licenses.asl20;
2021-01-15 13:21:58 +00:00
platforms = lib.platforms.linux ++ lib.platforms.darwin;
maintainers = with maintainers; [ lovek323 peti ];
2012-07-07 06:41:21 +00:00
};
}