mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
chore(nginx): lua-resty-core overlay unneeded
This commit is contained in:
parent
598d190084
commit
f05b50b53e
1 changed files with 6 additions and 4 deletions
|
|
@ -1,13 +1,15 @@
|
|||
final: prev: let
|
||||
inherit (final) lib;
|
||||
luaOverlay = luafinal: luaprev: {
|
||||
lua-resty-core = luaprev.lua-resty-core.overrideAttrs (old: rec {
|
||||
version = lib.warnIf (old.version != "0.1.24") "lua-resty-core updated upstream" "0.1.28";
|
||||
luaOverlay = luafinal: luaprev: let
|
||||
mkRestyCore = { nixpkgsVersion, version, sha256 }: luaprev.lua-resty-core.overrideAttrs (old: {
|
||||
version = lib.warnIf (old.version != nixpkgsVersion) "lua-resty-core updated upstream" version;
|
||||
src = old.src.override {
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-RJ2wcHTu447wM0h1fa2qCBl4/p9XL6ZqX9pktRW64RI=";
|
||||
inherit sha256;
|
||||
};
|
||||
});
|
||||
in {
|
||||
#lua-resty-core = mkRestyCore { nixpkgsVersion = "0.1.24"; version = "0.1.28"; sha256 = "sha256-RJ2wcHTu447wM0h1fa2qCBl4/p9XL6ZqX9pktRW64RI="; };
|
||||
};
|
||||
in {
|
||||
nginxModules = prev.nginxModules // {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue