tests/lua-5: fix checkPropogatedBuildInputs test

Dependencies changed in https://github.com/NixOS/nixpkgs/pull/342196
This commit is contained in:
Austin Horstman
2025-03-15 09:12:55 -05:00
parent 4ee53e6544
commit 609b8b61be
@@ -123,12 +123,14 @@ pkgs.recurseIntoAttrs ({
checkPropagatedBuildInputs =
pkgs.runCommandLocal "test-${lua.name}-setup-hook"
({
# lua-curl is a propagatedBuildInput of rest-nvim has
buildInputs = [ lua.pkgs.rest-nvim ];
})
(''
${lua}/bin/lua -e "require'cURL'"
touch $out
'');
# `xml2lua` is a propagatedBuildInput of rest-nvim
(
''
${lua}/bin/lua -e "require'xml2lua'"
touch $out
''
);
})