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