tengine: add ETag patch

This commit is contained in:
Izorkin 2020-04-25 17:02:57 +03:00
parent a19800fb48
commit 1d71150c73

View File

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, openssl, zlib, pcre, libxml2, libxslt { stdenv, fetchFromGitHub, openssl, zlib, pcre, libxml2, libxslt
, gd, geoip, gperftools, jemalloc , substituteAll, gd, geoip, gperftools, jemalloc
, withDebug ? false , withDebug ? false
, withMail ? false , withMail ? false
, withStream ? false , withStream ? false
@ -24,7 +24,12 @@ stdenv.mkDerivation rec {
[ openssl zlib pcre libxml2 libxslt gd geoip gperftools jemalloc ] [ openssl zlib pcre libxml2 libxslt gd geoip gperftools jemalloc ]
++ concatMap (mod: mod.inputs or []) modules; ++ concatMap (mod: mod.inputs or []) modules;
patches = [ patches = singleton (substituteAll {
src = ../nginx/nix-etag-1.15.4.patch;
preInstall = ''
export nixStoreDir="$NIX_STORE" nixStoreDirLen="''${#NIX_STORE}"
'';
}) ++ [
./check-resolv-conf.patch ./check-resolv-conf.patch
]; ];