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