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