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
|
|
|
|
, modules ? []
|
2016-03-04 07:54:27 -08:00
|
|
|
, hardening ? true
|
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
|
|
|
|
2013-05-05 12:48:07 -07:00
|
|
|
let
|
2016-01-26 09:12:01 -08:00
|
|
|
version = "1.8.1";
|
2013-11-24 22:58:34 -08:00
|
|
|
mainSrc = fetchurl {
|
|
|
|
url = "http://nginx.org/download/nginx-${version}.tar.gz";
|
2016-01-26 09:12:01 -08:00
|
|
|
sha256 = "1dwpyw4pvhj68vxramqxm8f79pqz9lrm8mvifbn49h3615ikqjwg";
|
2013-11-24 22:58:34 -08:00
|
|
|
};
|
|
|
|
|
2013-05-05 12:48:07 -07:00
|
|
|
in
|
|
|
|
|
2011-10-31 11:26:20 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2013-11-24 22:58:34 -08:00
|
|
|
name = "nginx-${version}";
|
|
|
|
src = mainSrc;
|
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 = [
|
2015-04-22 15:28:10 -07:00
|
|
|
"--with-select_module"
|
|
|
|
"--with-poll_module"
|
|
|
|
"--with-threads"
|
2008-11-30 01:06:53 -08:00
|
|
|
"--with-http_ssl_module"
|
2013-12-13 00:41:22 -08:00
|
|
|
"--with-http_spdy_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_image_filter_module"
|
|
|
|
"--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"
|
2013-12-13 00:41:22 -08:00
|
|
|
"--with-ipv6"
|
2010-04-09 04:26:54 -07:00
|
|
|
# Install destination problems
|
2012-10-09 11:20:44 -07:00
|
|
|
# "--with-http_perl_module"
|
2015-10-19 01:48:43 -07:00
|
|
|
] ++ optionals (elem stdenv.system (with platforms; linux ++ freebsd))
|
2015-05-21 10:41:57 -07:00
|
|
|
[ "--with-file-aio" "--with-aio_module" ]
|
2015-10-19 01:48:43 -07:00
|
|
|
++ map (mod: "--add-module=${mod.src}") modules;
|
2014-05-05 00:18:47 -07:00
|
|
|
|
2015-10-19 01:48:43 -07:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-I${libxml2}/include/libxml2" ] ++ optional stdenv.isDarwin "-Wno-error=deprecated-declarations -Wno-error=conditional-uninitialized";
|
2015-09-23 11:28:44 -07:00
|
|
|
|
2016-03-04 07:54:27 -08:00
|
|
|
preConfigure = (concatMapStringsSep "\n" (mod: mod.preConfigure or "") modules)
|
2016-03-04 07:57:47 -08:00
|
|
|
+ optionalString (hardening && (stdenv.cc.cc.isGNU or false)) ''
|
2016-03-04 07:54:27 -08:00
|
|
|
configureFlagsArray=(
|
|
|
|
--with-cc-opt="-fPIE -fstack-protector-all --param ssp-buffer-size=4 -O2 -D_FORTIFY_SOURCE=2"
|
|
|
|
--with-ld-opt="-pie -Wl,-z,relro,-z,now"
|
|
|
|
)
|
|
|
|
''
|
|
|
|
;
|
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
|
|
|
|
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;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice raskin ];
|
2008-11-30 01:06:53 -08:00
|
|
|
};
|
|
|
|
}
|