File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ format:
1010test :
1111 # TODO: install tree-sitter-http as a test dependency using nix
1212 # or version it appart from NURR
13- LUA_PATH=" $( shell luarocks path --lr-path --lua-version 5.1 --local) " \
14- LUA_CPATH=" $( shell luarocks path --lr-cpath --lua-version 5.1 --local) " \
15- luarocks install --local --lua-version 5.1 --dev tree-sitter-http
13+ # LUA_PATH="$(shell luarocks path --lr-path --lua-version 5.1 --local)" \
14+ # LUA_CPATH="$(shell luarocks path --lr-cpath --lua-version 5.1 --local)" \
15+ # luarocks install --local --lua-version 5.1 --dev tree-sitter-http
1616 LUA_PATH=" $( shell luarocks path --lr-path --lua-version 5.1 --local) " \
1717 LUA_CPATH=" $( shell luarocks path --lr-cpath --lua-version 5.1 --local) " \
1818 luarocks test --local --lua-version 5.1 --dev
Original file line number Diff line number Diff line change 3333 devShell = pkgs . mkShell {
3434 name = "rest.nvim devShell" ;
3535 shellHook = ''
36+ export LUA_PATH="$(luarocks path --lr-path --lua-version 5.1 --local)"
37+ export LUA_CPATH="$(luarocks path --lr-cpath --lua-version 5.1 --local)"
3638 '' ;
3739 buildInputs = [
3840 pkgs . sumneko-lua-language-server
You can’t perform that action at this time.
0 commit comments