Skip to content

Commit

Permalink
neovim: fix quoting for makeWrapper
Browse files Browse the repository at this point in the history
Fixes #33625 after #31497
  • Loading branch information
orivej committed Jan 9, 2018
1 parent 067cac7 commit f4afbf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/applications/editors/neovim/default.nix
Expand Up @@ -83,7 +83,7 @@ let
(optionalString withPython3 python3Wrapper) +
(optionalString withRuby rubyWrapper)}" --unset PYTHONPATH '' +
optionalString (withRuby)
''--suffix PATH : \"${rubyEnv}/bin\" --set GEM_HOME \"${rubyEnv}/${rubyEnv.ruby.gemPath}\" '';
''--suffix PATH : ${rubyEnv}/bin --set GEM_HOME ${rubyEnv}/${rubyEnv.ruby.gemPath} '';

neovim = stdenv.mkDerivation rec {
name = "neovim-${version}";
Expand Down

0 comments on commit f4afbf6

Please sign in to comment.