Merge pull request #82810 from timokau/vim-pandoc-fix

vimPlugins.vim-pandoc: fix startup

authored by

Timo Kaufmann and committed by
GitHub
c8a67fd3 2ef42e07

+15
+15
pkgs/misc/vim-plugins/overrides.nix
··· 112 112 ''; 113 113 }); 114 114 115 + vim-pandoc = super.vim-pandoc.overrideAttrs(old: { 116 + patches = (super.patches or []) ++ [ 117 + # Fix a failure on startup, which breaks the rplugin manifest generation 118 + # https://github.com/vim-pandoc/vim-pandoc/pull/363#issuecomment-599080366 119 + (fetchpatch { 120 + name = "fix-fdetect.patch"; 121 + url = "https://github.com/vim-pandoc/vim-pandoc/commit/da4c0b0325c1bfad20f7cfd15abb53943fe22fc4.patch"; 122 + revert = true; 123 + # For some reason that part was already reverted upstream. 124 + excludes = ["ftdetect/pandoc.vim"]; 125 + sha256 = "10nykgsqpxx5hlagk83khjl8p58zx7z3bcryzinv5vv52wlqkq5p"; 126 + }) 127 + ]; 128 + }); 129 + 115 130 clighter8 = super.clighter8.overrideAttrs(old: { 116 131 preFixup = '' 117 132 sed "/^let g:clighter8_libclang_path/s|')$|${llvmPackages.clang.cc.lib}/lib/libclang.so')|" \