about summary refs log tree commit diff
path: root/pkgs/applications/editors/neovim/wrapper.nix
diff options
context:
space:
mode:
authorAlexey Shmalko <rasen.dubi@gmail.com>2018-12-09 01:45:10 +0200
committerAlexey Shmalko <rasen.dubi@gmail.com>2018-12-10 23:19:45 +0200
commitbc51418f1add4ba47a87c9b3fd698676577a8384 (patch)
treeb72829a418137682db85bbec465b023ef7b1d478 /pkgs/applications/editors/neovim/wrapper.nix
parent211938532cc788d9dadbb9b14d0845e4576dfeb4 (diff)
downloadnixlib-bc51418f1add4ba47a87c9b3fd698676577a8384.tar
nixlib-bc51418f1add4ba47a87c9b3fd698676577a8384.tar.gz
nixlib-bc51418f1add4ba47a87c9b3fd698676577a8384.tar.bz2
nixlib-bc51418f1add4ba47a87c9b3fd698676577a8384.tar.lz
nixlib-bc51418f1add4ba47a87c9b3fd698676577a8384.tar.xz
nixlib-bc51418f1add4ba47a87c9b3fd698676577a8384.tar.zst
nixlib-bc51418f1add4ba47a87c9b3fd698676577a8384.zip
neovim-pygui: remove
Diffstat (limited to 'pkgs/applications/editors/neovim/wrapper.nix')
-rw-r--r--pkgs/applications/editors/neovim/wrapper.nix7
1 files changed, 1 insertions, 6 deletions
diff --git a/pkgs/applications/editors/neovim/wrapper.nix b/pkgs/applications/editors/neovim/wrapper.nix
index 5e57fe4d141d..3dd3710da772 100644
--- a/pkgs/applications/editors/neovim/wrapper.nix
+++ b/pkgs/applications/editors/neovim/wrapper.nix
@@ -16,7 +16,6 @@ let
     , withPython3 ? true,  extraPython3Packages ? (_: []) /* the function you would have passed to python.withPackages */
     , withNodeJs? false
     , withRuby ? true
-    , withPyGUI ? false
     , vimAlias ? false
     , viAlias ? false
     , configure ? {}
@@ -43,7 +42,7 @@ let
 
   pluginPythonPackages = getDeps "pythonDependencies" requiredPlugins;
   pythonEnv = pythonPackages.python.withPackages(ps:
-        (if withPyGUI then [ ps.neovim_gui ] else [ ps.pynvim ])
+        [ ps.pynvim ]
         ++ (extraPythonPackagesFun ps)
         ++ (concatMap (f: f ps) pluginPythonPackages));
 
@@ -88,10 +87,6 @@ let
         makeWrapper ${python3Env}/bin/python3 $out/bin/nvim-python3 --unset PYTHONPATH
     '' + optionalString withRuby ''
       ln -s ${rubyEnv}/bin/neovim-ruby-host $out/bin/nvim-ruby
-    ''
-      + optionalString withPyGUI ''
-      makeWrapper "${pythonEnv}/bin/pynvim" "$out/bin/pynvim" \
-        --prefix PATH : "$out/bin"
     '' + optionalString vimAlias ''
       ln -s $out/bin/nvim $out/bin/vim
     '' + optionalString viAlias ''