openresty: default more explicitly to no modules

Set modules explicitly for the openresty package. Otherwise, the use of
`callPackage ../nginx/generic.nix` will take 'modules' from the
top-level, which may include a 'modules' variable set in an overlay...
which can lead to some nicely confusing error messages.

Fixes #158324
This commit is contained in:
Euan Kemp 2022-02-05 21:35:32 -08:00
parent 216ba61767
commit 14736a33cd

View File

@ -21548,6 +21548,7 @@ with pkgs;
openresty = callPackage ../servers/http/openresty {
withPerl = false;
modules = [];
};
opensmtpd = callPackage ../servers/mail/opensmtpd { };