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

Merge pull request #2562 from offlinehacker/pkgs/nginx/syslog_fix

nginx: fix syslog module
This commit is contained in:
Rob Vermaas 2014-05-08 21:39:50 +02:00
commit 99c46b7eb3

View file

@ -26,8 +26,8 @@ let
syslog-ext = fetchgit {
url = https://github.com/yaoweibin/nginx_syslog_patch.git;
rev = "690a054a0e440323bba58ed3be12d705d3fb9cf2";
sha256 = "0678bc2960dfa31adfc2997c079947c32dde28d6785ee423fa7f5badbb925fbe";
rev = "3ca5ba65541637f74467038aa032e2586321d0cb";
sha256 = "15z9r17lx42fdcw8lalddc86wpabgmc1rqi7f90v4mcirjzrpgyi";
};
moreheaders-ext = fetchgit {
@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
[ openssl zlib pcre libxml2 libxslt gd geoip
] ++ stdenv.lib.optional fullWebDAV expat;
patches = if syslog then [ "${syslog-ext}/syslog_1.5.6.patch" ] else [];
patches = if syslog then [ "${syslog-ext}/syslog-1.5.6.patch" ] else [];
configureFlags = [
"--with-http_ssl_module"