Unverified Commit 609b8b61 authored by Austin Horstman's avatar Austin Horstman
Browse files

tests/lua-5: fix checkPropogatedBuildInputs test

parent 4ee53e65
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -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'"
      # `xml2lua` is a propagatedBuildInput of rest-nvim
      (
        ''
          ${lua}/bin/lua -e "require'xml2lua'"
          touch $out
      '');
        ''
      );

})