nginxModules.lua: add version to support nix-update

This commit is contained in:
Sandro Jäckel 2024-01-15 15:31:50 +01:00
parent 95123f3589
commit 7b74c252df
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -373,11 +373,13 @@ let self = {
lua = rec {
name = "lua";
version = "0.10.22";
src = fetchFromGitHub {
name = "lua";
owner = "openresty";
repo = "lua-nginx-module";
rev = "v0.10.22";
rev = "v${version}";
sha256 = "sha256-TyeTL7/0dI2wS2eACS4sI+9tu7UpDq09aemMaklkUss=";
};