Skip to content

Commit

Permalink
vis: use correct separator for LUA_CPATH/LUA_PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Mar 26, 2017
1 parent fb50abb commit df4b6ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/editors/vis/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ stdenv.mkDerivation rec {
cp $desktopItem/share/applications/* $out/share/applications
echo wrapping $out/bin/vis with runtime environment
wrapProgram $out/bin/vis \
--prefix LUA_CPATH : "${lpeg}/lib/lua/${lua.luaversion}/?.so" \
--prefix LUA_PATH : "${lpeg}/share/lua/${lua.luaversion}/?.lua" \
--prefix LUA_CPATH ';' "${lpeg}/lib/lua/${lua.luaversion}/?.so" \
--prefix LUA_PATH ';' "${lpeg}/share/lua/${lua.luaversion}/?.lua" \
--prefix VIS_PATH : "\$HOME/.config:$out/share/vis"
'';

Expand Down

0 comments on commit df4b6ae

Please sign in to comment.