1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/servers/http/nginx/default.nix

126 lines
3.9 KiB
Nix
Raw Normal View History

2013-11-18 15:02:33 +00:00
{ stdenv, fetchurl, fetchgit, openssl, zlib, pcre, libxml2, libxslt, expat
2014-08-30 17:41:33 +01:00
, gd, geoip, luajit
2013-11-18 15:02:33 +00:00
, rtmp ? false
, fullWebDAV ? false
2013-12-13 08:38:09 +00:00
, syslog ? false
, moreheaders ? false
2014-08-30 17:41:33 +01:00
, echo ? false
, ngx_lua ? false }:
with stdenv.lib;
2012-10-09 19:20:44 +01:00
let
version = "1.6.1";
2013-11-25 06:58:34 +00:00
mainSrc = fetchurl {
url = "http://nginx.org/download/nginx-${version}.tar.gz";
sha256 = "0rv0hds8dhanh8fz8qv5jj7p96q4sl158w6aq814dvxfl61fdkzm";
2013-11-25 06:58:34 +00:00
};
2013-11-18 15:02:33 +00:00
rtmp-ext = fetchgit {
url = https://github.com/arut/nginx-rtmp-module.git;
rev = "8c2229cce5d4d4574e8fb7b130281497f746f0fa";
sha256 = "6caea2a13161345c3fc963679730be54cebebddf1406ac7d4ef4ce72ac0b90b0";
2013-11-18 15:02:33 +00:00
};
dav-ext = fetchgit {
url = "https://github.com/arut/nginx-dav-ext-module";
rev = "89d582d31ab624ff1c6a4cec0c1a52839507b323";
sha256 = "2175f83a291347504770d2a4bb5069999e9f7408697bd49464b6b54e994493e1";
};
syslog-ext = fetchgit {
url = https://github.com/yaoweibin/nginx_syslog_patch.git;
2014-05-07 22:53:28 +01:00
rev = "3ca5ba65541637f74467038aa032e2586321d0cb";
sha256 = "15z9r17lx42fdcw8lalddc86wpabgmc1rqi7f90v4mcirjzrpgyi";
};
2013-12-13 08:38:09 +00:00
moreheaders-ext = fetchgit {
url = https://github.com/openresty/headers-more-nginx-module.git;
rev = "0c6e05d3125a97892a250e9ba8b7674163ba500b";
sha256 = "e121d97fd3c81c64e6cbf6902bbcbdb01be9ac985c6832d40434379d5e998eaf";
2013-12-13 08:38:09 +00:00
};
echo-ext = fetchgit {
url = https://github.com/openresty/echo-nginx-module.git;
rev = "refs/tags/v0.53";
sha256 = "90d4e3a49c678019f4f335bc18529aa108fcc9cfe0747ea4e2f6084a70da2868";
};
2014-08-30 17:41:33 +01:00
develkit-ext = fetchgit {
url = https://github.com/simpl/ngx_devel_kit.git;
rev = "refs/tags/v0.2.19";
sha256 = "169m6gsa5b6zh1ws8qx2k7dbswld1zmhm4dh57qka0h07gs5dqjg";
};
lua-ext = fetchgit {
url = https://github.com/openresty/lua-nginx-module.git;
rev = "refs/tags/v0.9.11";
sha256 = "0y7238bvb907n7fsz5sivxbhfz2xnf4f0lzwk3k3h9j20fsyvwqq";
};
in
stdenv.mkDerivation rec {
2013-11-25 06:58:34 +00:00
name = "nginx-${version}";
src = mainSrc;
2012-10-09 19:20:44 +01:00
buildInputs =
[ openssl zlib pcre libxml2 libxslt gd geoip
2014-08-30 17:41:33 +01:00
] ++ optional fullWebDAV expat
++ optional ngx_lua luajit;
LUAJIT_LIB = if ngx_lua then "${luajit}/lib" else "";
LUAJIT_INC = if ngx_lua then "${luajit}/include/luajit-2.0" else "";
2014-05-07 22:53:28 +01:00
patches = if syslog then [ "${syslog-ext}/syslog-1.5.6.patch" ] else [];
configureFlags = [
"--with-http_ssl_module"
2013-12-13 08:41:22 +00:00
"--with-http_spdy_module"
"--with-http_realip_module"
"--with-http_addition_module"
"--with-http_xslt_module"
"--with-http_image_filter_module"
"--with-http_geoip_module"
"--with-http_sub_module"
"--with-http_dav_module"
"--with-http_flv_module"
"--with-http_mp4_module"
"--with-http_gunzip_module"
"--with-http_gzip_static_module"
"--with-http_auth_request_module"
"--with-http_random_index_module"
"--with-http_secure_link_module"
"--with-http_degradation_module"
"--with-http_stub_status_module"
2013-12-13 08:41:22 +00:00
"--with-ipv6"
# Install destination problems
2012-10-09 19:20:44 +01:00
# "--with-http_perl_module"
] ++ optional rtmp "--add-module=${rtmp-ext}"
++ optional fullWebDAV "--add-module=${dav-ext}"
++ optional syslog "--add-module=${syslog-ext}"
++ optional moreheaders "--add-module=${moreheaders-ext}"
++ optional echo "--add-module=${echo-ext}"
2014-08-30 17:41:33 +01:00
++ optional ngx_lua "--add-module=${develkit-ext} --add-module=${lua-ext}"
++ optional (elem stdenv.system (with platforms; linux ++ freebsd)) "--with-file-aio";
2014-08-17 21:17:13 +01:00
additionalFlags = optionalString stdenv.isDarwin "-Wno-error=deprecated-declarations -Wno-error=conditional-uninitialized";
preConfigure = ''
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${libxml2}/include/libxml2 $additionalFlags"
'';
postInstall = ''
mv $out/sbin $out/bin
'';
meta = {
2012-10-09 19:20:44 +01:00
description = "A reverse proxy and lightweight webserver";
homepage = http://nginx.org;
license = licenses.bsd2;
platforms = platforms.all;
maintainers = with maintainers; [ thoughtpolice raskin ];
};
}