about summary refs log tree commit diff
path: root/pkgs/applications/editors/neovim/default.nix
diff options
context:
space:
mode:
authorJoe Hermaszewski <git@monoid.al>2015-10-10 19:30:04 +0100
committerRok Garbas <rok@garbas.si>2015-10-14 11:57:40 +0200
commitd6d88aaa2b101998b7f3b4ef0f7806024e879828 (patch)
tree99e0d693c7cd5ae0b8ea7b24c4e516a504b0f84d /pkgs/applications/editors/neovim/default.nix
parent78b2851724de10a2d6f9eae1301f14a449f29e6f (diff)
downloadnixlib-d6d88aaa2b101998b7f3b4ef0f7806024e879828.tar
nixlib-d6d88aaa2b101998b7f3b4ef0f7806024e879828.tar.gz
nixlib-d6d88aaa2b101998b7f3b4ef0f7806024e879828.tar.bz2
nixlib-d6d88aaa2b101998b7f3b4ef0f7806024e879828.tar.lz
nixlib-d6d88aaa2b101998b7f3b4ef0f7806024e879828.tar.xz
nixlib-d6d88aaa2b101998b7f3b4ef0f7806024e879828.tar.zst
nixlib-d6d88aaa2b101998b7f3b4ef0f7806024e879828.zip
neovim: Create symlink to correct python3 binary
The symlink being created pointed to 'python' rather than 'python3'
Diffstat (limited to 'pkgs/applications/editors/neovim/default.nix')
-rw-r--r--pkgs/applications/editors/neovim/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix
index 1cc39b6465c7..f9f1921a176c 100644
--- a/pkgs/applications/editors/neovim/default.nix
+++ b/pkgs/applications/editors/neovim/default.nix
@@ -103,7 +103,7 @@ let
     '' + optionalString withPython ''
       ln -s ${pythonEnv}/bin/python $out/bin/nvim-python
     '' + optionalString withPython3 ''
-      ln -s ${python3Env}/bin/python $out/bin/nvim-python3
+      ln -s ${python3Env}/bin/python3 $out/bin/nvim-python3
     '' + optionalString (withPython || withPython3) ''
         wrapProgram $out/bin/nvim --add-flags "${
           (optionalString withPython