2014-09-19 23:42:02 +00:00
|
|
|
{ stdenv, fetchurl, fetchFromGitHub, openssl, zlib, pcre, libxml2, libxslt, expat
|
2015-10-19 08:48:43 +00:00
|
|
|
, gd, geoip
|
|
|
|
, modules ? []
|
2015-01-21 11:38:34 +00:00
|
|
|
}:
|
2014-06-03 13:59:08 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2012-10-09 18:20:44 +00:00
|
|
|
|
2013-05-05 19:48:07 +00:00
|
|
|
let
|
2015-04-22 22:28:10 +00:00
|
|
|
version = "1.8.0";
|
2013-11-25 06:58:34 +00:00
|
|
|
mainSrc = fetchurl {
|
|
|
|
url = "http://nginx.org/download/nginx-${version}.tar.gz";
|
2015-04-22 22:28:10 +00:00
|
|
|
sha256 = "1mgkkmmwkhmpn68sdvbd73ssv6lpqhh864fsyvc1ij4hk4is3k13";
|
2013-11-25 06:58:34 +00:00
|
|
|
};
|
|
|
|
|
2013-05-05 19:48:07 +00:00
|
|
|
in
|
|
|
|
|
2011-10-31 18:26:20 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2013-11-25 06:58:34 +00:00
|
|
|
name = "nginx-${version}";
|
|
|
|
src = mainSrc;
|
2012-10-09 18:20:44 +00:00
|
|
|
|
2014-05-02 06:18:44 +00:00
|
|
|
buildInputs =
|
2015-10-19 08:48:43 +00:00
|
|
|
[ openssl zlib pcre libxml2 libxslt gd geoip ]
|
|
|
|
++ concatMap (mod: mod.inputs or []) modules;
|
2013-10-10 00:38:47 +00:00
|
|
|
|
2008-11-30 09:06:53 +00:00
|
|
|
configureFlags = [
|
2015-04-22 22:28:10 +00:00
|
|
|
"--with-select_module"
|
|
|
|
"--with-poll_module"
|
|
|
|
"--with-threads"
|
2008-11-30 09:06:53 +00:00
|
|
|
"--with-http_ssl_module"
|
2013-12-13 08:41:22 +00:00
|
|
|
"--with-http_spdy_module"
|
2014-05-02 06:18:44 +00:00
|
|
|
"--with-http_realip_module"
|
|
|
|
"--with-http_addition_module"
|
2008-11-30 09:06:53 +00:00
|
|
|
"--with-http_xslt_module"
|
2014-05-02 06:18:44 +00:00
|
|
|
"--with-http_image_filter_module"
|
|
|
|
"--with-http_geoip_module"
|
2008-11-30 09:06:53 +00:00
|
|
|
"--with-http_sub_module"
|
|
|
|
"--with-http_dav_module"
|
2014-05-02 06:18:44 +00: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 06:18:44 +00: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 06:18:44 +00:00
|
|
|
"--with-http_degradation_module"
|
2014-05-02 05:42:40 +00:00
|
|
|
"--with-http_stub_status_module"
|
2013-12-13 08:41:22 +00:00
|
|
|
"--with-ipv6"
|
2010-04-09 11:26:54 +00:00
|
|
|
# Install destination problems
|
2012-10-09 18:20:44 +00:00
|
|
|
# "--with-http_perl_module"
|
2015-10-19 08:48:43 +00:00
|
|
|
] ++ optionals (elem stdenv.system (with platforms; linux ++ freebsd))
|
2015-05-21 17:41:57 +00:00
|
|
|
[ "--with-file-aio" "--with-aio_module" ]
|
2015-10-19 08:48:43 +00:00
|
|
|
++ map (mod: "--add-module=${mod.src}") modules;
|
2014-05-05 07:18:47 +00:00
|
|
|
|
2015-10-19 08:48:43 +00:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-I${libxml2}/include/libxml2" ] ++ optional stdenv.isDarwin "-Wno-error=deprecated-declarations -Wno-error=conditional-uninitialized";
|
2015-09-23 18:28:44 +00:00
|
|
|
|
2015-10-19 08:48:43 +00:00
|
|
|
preConfigure = concatMapStringsSep "\n" (mod: mod.preConfigure or "") modules;
|
2008-11-30 09:06:53 +00:00
|
|
|
|
|
|
|
meta = {
|
2012-10-09 18:20:44 +00:00
|
|
|
description = "A reverse proxy and lightweight webserver";
|
2014-05-02 06:18:44 +00:00
|
|
|
homepage = http://nginx.org;
|
2014-06-03 13:59:08 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice raskin ];
|
2008-11-30 09:06:53 +00:00
|
|
|
};
|
|
|
|
}
|