nixosTests.openresty-lua: simplify
There's no point for the intermediate `getPath` function calling `getLuaPath` with the "lua" argument. There's also no other nginx test this copies code from. We always call `getLuaPath` with "lua", so constant-propagate it in. Also, camel-case `lualibs` to `luaLibs.`
This commit is contained in:
parent
4fa56ac6d8
commit
c2a2f68c8c
@ -1,12 +1,11 @@
|
|||||||
import ./make-test-python.nix ({ pkgs, lib, ... }:
|
import ./make-test-python.nix ({ pkgs, lib, ... }:
|
||||||
let
|
let
|
||||||
lualibs = [
|
luaLibs = [
|
||||||
pkgs.lua.pkgs.markdown
|
pkgs.lua.pkgs.markdown
|
||||||
];
|
];
|
||||||
|
|
||||||
getPath = lib: type: "${lib}/share/lua/${pkgs.lua.luaversion}/?.${type}";
|
getLuaPath = lib: "${lib}/share/lua/${pkgs.lua.luaversion}/?.lua";
|
||||||
getLuaPath = lib: getPath lib "lua";
|
luaPath = lib.concatStringsSep ";" (map getLuaPath luaLibs);
|
||||||
luaPath = lib.concatStringsSep ";" (map getLuaPath lualibs);
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
name = "openresty-lua";
|
name = "openresty-lua";
|
||||||
|
Loading…
Reference in New Issue
Block a user