Merge pull request #23005 from Mic92/clang_complete
vimPlugins.clang_complete: init at 2017-02-16
This commit is contained in:
commit
40da17902b
|
@ -282,6 +282,20 @@ rec {
|
||||||
sourceRoot = ".";
|
sourceRoot = ".";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
clang_complete = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||||
|
name = "clang_complete-2017-02-16";
|
||||||
|
src = fetchgit {
|
||||||
|
url = "git://github.com/Rip-Rip/clang_complete";
|
||||||
|
rev = "b1a507fbc27ef581c966b035f52eafae773a6f32";
|
||||||
|
sha256 = "19zs03giv8h5xmv18y9zn85sxr8akphvbscclrqhs4cf88285cgl";
|
||||||
|
};
|
||||||
|
dependencies = [];
|
||||||
|
preFixup = ''
|
||||||
|
substituteInPlace "$out"/share/vim-plugins/clang_complete/plugin/clang_complete.vim \
|
||||||
|
--replace "let g:clang_library_path = '' + "''" + ''" "let g:clang_library_path='${llvmPackages.clang.cc}/lib/libclang.so'"
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
commentary = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
commentary = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||||
name = "commentary-2016-03-10";
|
name = "commentary-2016-03-10";
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
"VimOutliner"
|
"VimOutliner"
|
||||||
"WebAPI"
|
"WebAPI"
|
||||||
"YankRing"
|
"YankRing"
|
||||||
|
"clang_complete"
|
||||||
"commentary"
|
"commentary"
|
||||||
"ctrlp-py-matcher"
|
"ctrlp-py-matcher"
|
||||||
"ctrlp-cmatcher"
|
"ctrlp-cmatcher"
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
preFixup = ''
|
||||||
|
substituteInPlace "$out"/share/vim-plugins/clang_complete/plugin/clang_complete.vim \
|
||||||
|
--replace "let g:clang_library_path = '' + "''" + ''" "let g:clang_library_path='${llvmPackages.clang.cc}/lib/libclang.so'"
|
||||||
|
'';
|
Loading…
Reference in New Issue