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
(cherry picked from commit df4b6ae)
  • Loading branch information
Mic92 committed Mar 31, 2017
1 parent 699a57d commit 897813e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/editors/vis/default.nix
Expand Up @@ -37,8 +37,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 897813e

Please sign in to comment.