Unverified Commit f5bf3f09 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #277450 from SuperSandro2000/nginx-openresty

 nginxModules.echo: 0.62 -> 0.63,  nginxModules.lua: 0.10.22 -> 0.10.26
parents 53f6fedd d8a53ce4
Loading
Loading
Loading
Loading
+9 −5
Original line number Diff line number Diff line
@@ -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 ];