Merge pull request #277450 from SuperSandro2000/nginx-openresty

nginxModules.echo: 0.62 -> 0.63,  nginxModules.lua: 0.10.22 -> 0.10.26
This commit is contained in:
Pol Dellaiera 2024-02-10 11:06:23 +01:00 committed by GitHub
commit f5bf3f09f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -231,14 +231,16 @@ let self = {
};
};
echo = {
echo = rec {
name = "echo";
version = "0.63";
src = fetchFromGitHub {
name = "echo";
owner = "openresty";
repo = "echo-nginx-module";
rev = "v0.62";
sha256 = "0kr1y094yw1a9fyrf4w73ikq18w5ys463wza9n7yfl77xdwirnvl";
rev = "v${version}";
hash = "sha256-K7oOE0yxPYLf+3YMVbBsncpHRpGHXjs/8B5QPO3MQC4=";
};
meta = with lib; {
@ -371,12 +373,14 @@ let self = {
lua = rec {
name = "lua";
version = "0.10.26";
src = fetchFromGitHub {
name = "lua";
owner = "openresty";
repo = "lua-nginx-module";
rev = "v0.10.22";
sha256 = "sha256-TyeTL7/0dI2wS2eACS4sI+9tu7UpDq09aemMaklkUss=";
rev = "v${version}";
hash = "sha256-007up/XncaSBimBumHpbwgB1WnkXgBe8e/q/yT6vthI=";
};
inputs = [ luajit_openresty ];