about summary refs log tree commit diff
path: root/pkgs/misc/vim-plugins
diff options
context:
space:
mode:
authorCharles Strahan <charles@cstrahan.com>2019-07-08 03:54:52 -0400
committerGitHub <noreply@github.com>2019-07-08 03:54:52 -0400
commit5ded60dfc4178045ac6b11c3a49c404c0376449a (patch)
tree6f77405fe7bea16bf1eea127d534a5d2ce95947c /pkgs/misc/vim-plugins
parent2eb3dd206d174941d5abfb92702eabe56755087d (diff)
parentba3dd20f370adef238d6becb832ac4247b30dca3 (diff)
downloadnixlib-5ded60dfc4178045ac6b11c3a49c404c0376449a.tar
nixlib-5ded60dfc4178045ac6b11c3a49c404c0376449a.tar.gz
nixlib-5ded60dfc4178045ac6b11c3a49c404c0376449a.tar.bz2
nixlib-5ded60dfc4178045ac6b11c3a49c404c0376449a.tar.lz
nixlib-5ded60dfc4178045ac6b11c3a49c404c0376449a.tar.xz
nixlib-5ded60dfc4178045ac6b11c3a49c404c0376449a.tar.zst
nixlib-5ded60dfc4178045ac6b11c3a49c404c0376449a.zip
Merge pull request #64219 from jonringer/ycmd-python3
ycmd: build with python3
Diffstat (limited to 'pkgs/misc/vim-plugins')
-rw-r--r--pkgs/misc/vim-plugins/overrides.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/misc/vim-plugins/overrides.nix b/pkgs/misc/vim-plugins/overrides.nix
index 1a4803fdcc57..cbeb4789e717 100644
--- a/pkgs/misc/vim-plugins/overrides.nix
+++ b/pkgs/misc/vim-plugins/overrides.nix
@@ -416,19 +416,19 @@ self: super: {
   youcompleteme = super.youcompleteme.overrideAttrs(old: {
     buildPhase = ''
       substituteInPlace plugin/youcompleteme.vim \
-        --replace "'ycm_path_to_python_interpreter', '''" \
-        "'ycm_path_to_python_interpreter', '${python}/bin/python'"
+        --replace "'ycm_python_interpreter_path', '''" \
+        "'ycm_python_interpreter_path', '${python3}/bin/python'"
 
       rm -r third_party/ycmd
       ln -s ${ycmd}/lib/ycmd third_party
     '';
 
-    meta = {
+    meta = with stdenv.lib; {
       description = "A code-completion engine for Vim";
-      homepage = https://github.com/Valloric/YouCompleteMe;
-      license = stdenv.lib.licenses.gpl3;
-      maintainers = with stdenv.lib.maintainers; [marcweber jagajaga];
-      platforms = stdenv.lib.platforms.unix;
+      homepage = "https://github.com/Valloric/YouCompleteMe";
+      license = licenses.gpl3;
+      maintainers = with maintainers; [ marcweber jagajaga ];
+      platforms = platforms.unix;
     };
   });