2014-09-19 16:42:02 -07:00
|
|
|
{ stdenv, fetchurl, fetchFromGitHub, openssl, zlib, pcre, libxml2, libxslt, expat
|
2015-10-19 01:48:43 -07:00
|
|
|
, gd, geoip
|
2017-08-19 14:38:17 -07:00
|
|
|
, withStream ? true
|
2017-08-19 14:36:37 -07:00
|
|
|
, withMail ? false
|
2015-10-19 01:48:43 -07:00
|
|
|
, modules ? []
|
2016-03-04 07:54:27 -08:00
|
|
|
, hardening ? true
|
2016-07-18 16:16:51 -07:00
|
|
|
, version, sha256, ...
|
2015-01-21 03:38:34 -08:00
|
|
|
}:
|
2014-06-03 06:59:08 -07:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2012-10-09 11:20:44 -07:00
|
|
|
|
2016-07-18 16:16:51 -07:00
|
|
|
stdenv.mkDerivation {
|
2016-05-06 01:34:37 -07:00
|
|
|
name = "nginx-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2013-11-24 22:58:34 -08:00
|
|
|
url = "http://nginx.org/download/nginx-${version}.tar.gz";
|
2016-07-18 16:16:51 -07:00
|
|
|
inherit sha256;
|
2013-11-24 22:58:34 -08:00
|
|
|
};
|
|
|
|
|
2012-10-09 11:20:44 -07:00
|
|
|
|
2014-05-01 23:18:44 -07:00
|
|
|
buildInputs =
|
2015-10-19 01:48:43 -07:00
|
|
|
[ openssl zlib pcre libxml2 libxslt gd geoip ]
|
|
|
|
++ concatMap (mod: mod.inputs or []) modules;
|
2013-10-09 17:38:47 -07:00
|
|
|
|
2008-11-30 01:06:53 -08:00
|
|
|
configureFlags = [
|
|
|
|
"--with-http_ssl_module"
|
2016-05-03 10:48:39 -07:00
|
|
|
"--with-http_v2_module"
|
2014-05-01 23:18:44 -07:00
|
|
|
"--with-http_realip_module"
|
|
|
|
"--with-http_addition_module"
|
2008-11-30 01:06:53 -08:00
|
|
|
"--with-http_xslt_module"
|
2014-05-01 23:18:44 -07:00
|
|
|
"--with-http_geoip_module"
|
2008-11-30 01:06:53 -08:00
|
|
|
"--with-http_sub_module"
|
|
|
|
"--with-http_dav_module"
|
2014-05-01 23:18:44 -07:00
|
|
|
"--with-http_flv_module"
|
|
|
|
"--with-http_mp4_module"
|
|
|
|
"--with-http_gunzip_module"
|
2008-11-30 01:06:53 -08:00
|
|
|
"--with-http_gzip_static_module"
|
2014-05-01 23:18:44 -07:00
|
|
|
"--with-http_auth_request_module"
|
|
|
|
"--with-http_random_index_module"
|
2008-11-30 01:06:53 -08:00
|
|
|
"--with-http_secure_link_module"
|
2014-05-01 23:18:44 -07:00
|
|
|
"--with-http_degradation_module"
|
2014-05-01 22:42:40 -07:00
|
|
|
"--with-http_stub_status_module"
|
2017-08-19 14:34:19 -07:00
|
|
|
"--with-threads"
|
|
|
|
"--with-pcre-jit"
|
2010-04-09 04:26:54 -07:00
|
|
|
# Install destination problems
|
2012-10-09 11:20:44 -07:00
|
|
|
# "--with-http_perl_module"
|
2017-08-19 14:35:24 -07:00
|
|
|
] ++ optional withStream [
|
|
|
|
"--with-stream"
|
|
|
|
"--with-stream_geoip_module"
|
|
|
|
"--with-stream_realip_module"
|
|
|
|
"--with-stream_ssl_module"
|
|
|
|
"--with-stream_ssl_preread_module"
|
2017-08-19 14:36:37 -07:00
|
|
|
] ++ optional withMail [
|
|
|
|
"--with-mail"
|
|
|
|
"--with-mail_ssl_module"
|
|
|
|
]
|
2016-12-25 23:17:11 -08:00
|
|
|
++ optional (gd != null) "--with-http_image_filter_module"
|
2016-05-03 10:48:39 -07:00
|
|
|
++ optional (elem stdenv.system (with platforms; linux ++ freebsd)) "--with-file-aio"
|
2015-10-19 01:48:43 -07:00
|
|
|
++ map (mod: "--add-module=${mod.src}") modules;
|
2014-05-05 00:18:47 -07:00
|
|
|
|
2016-05-03 10:48:39 -07:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-I${libxml2.dev}/include/libxml2" ] ++ optional stdenv.isDarwin "-Wno-error=deprecated-declarations";
|
2015-09-23 11:28:44 -07:00
|
|
|
|
2016-03-07 15:39:07 -08:00
|
|
|
preConfigure = (concatMapStringsSep "\n" (mod: mod.preConfigure or "") modules);
|
2008-11-30 01:06:53 -08:00
|
|
|
|
2016-02-26 09:38:15 -08:00
|
|
|
hardeningEnable = [ "pie" ];
|
2016-02-26 08:38:26 -08:00
|
|
|
|
2016-05-03 10:48:39 -07:00
|
|
|
postInstall = ''
|
|
|
|
mv $out/sbin $out/bin
|
|
|
|
'';
|
|
|
|
|
2008-11-30 01:06:53 -08:00
|
|
|
meta = {
|
2012-10-09 11:20:44 -07:00
|
|
|
description = "A reverse proxy and lightweight webserver";
|
2014-05-01 23:18:44 -07:00
|
|
|
homepage = http://nginx.org;
|
2014-06-03 06:59:08 -07:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.all;
|
2017-03-20 11:58:52 -07:00
|
|
|
maintainers = with maintainers; [ thoughtpolice raskin fpletz ];
|
2008-11-30 01:06:53 -08:00
|
|
|
};
|
|
|
|
}
|