Skip to content

Commit

Permalink
qtile: fix wrapProgram quotation
Browse files Browse the repository at this point in the history
  • Loading branch information
orivej committed Nov 19, 2017
1 parent fb703ad commit eb3d207
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/applications/window-managers/qtile/default.nix
Expand Up @@ -36,9 +36,9 @@ python27Packages.buildPythonApplication rec {

postInstall = ''
wrapProgram $out/bin/qtile \
--run "export QTILE_WRAPPER=$0" \
--run "export QTILE_SAVED_PYTHONPATH=$PYTHONPATH" \
--run "export QTILE_SAVED_PATH=$PATH"
--run 'export QTILE_WRAPPER=$0' \
--run 'export QTILE_SAVED_PYTHONPATH=$PYTHONPATH' \
--run 'export QTILE_SAVED_PATH=$PATH'
'';

meta = with stdenv.lib; {
Expand Down

0 comments on commit eb3d207

Please sign in to comment.