summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorJaka Hudoklin <jakahudoklin@gmail.com>2014-05-07 23:53:28 +0200
committerJaka Hudoklin <jakahudoklin@gmail.com>2014-05-07 23:54:57 +0200
commiteabfc509ef98c856eab12421ae2e7200ed3b9a95 (patch)
treee4e5a568118ddba974fb581f881d3727e43d7dd2 /pkgs/servers
parentcdf7d6a66f67f2498faa0dd698b1e14481ffbf69 (diff)
downloadnixlib-eabfc509ef98c856eab12421ae2e7200ed3b9a95.tar
nixlib-eabfc509ef98c856eab12421ae2e7200ed3b9a95.tar.gz
nixlib-eabfc509ef98c856eab12421ae2e7200ed3b9a95.tar.bz2
nixlib-eabfc509ef98c856eab12421ae2e7200ed3b9a95.tar.lz
nixlib-eabfc509ef98c856eab12421ae2e7200ed3b9a95.tar.xz
nixlib-eabfc509ef98c856eab12421ae2e7200ed3b9a95.tar.zst
nixlib-eabfc509ef98c856eab12421ae2e7200ed3b9a95.zip
nginx: fix syslog module
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/http/nginx/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/http/nginx/default.nix b/pkgs/servers/http/nginx/default.nix
index 3dc385751364..e8923559c033 100644
--- a/pkgs/servers/http/nginx/default.nix
+++ b/pkgs/servers/http/nginx/default.nix
@@ -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"