1 buildPhase = ''
2 substituteInPlace plugin/youcompleteme.vim \
3 --replace "'ycm_path_to_python_interpreter', '''" \
4 "'ycm_path_to_python_interpreter', '${python}/bin/python'"
5
6 rm -r third_party/ycmd
7 ln -s ${ycmd}/lib/ycmd third_party
8 '';
9
10 meta = {
11 description = "Fastest non utf-8 aware word and C completion engine for Vim";
12 homepage = http://github.com/Valloric/YouCompleteMe;
13 license = stdenv.lib.licenses.gpl3;
14 maintainers = with stdenv.lib.maintainers; [marcweber jagajaga];
15 platforms = stdenv.lib.platforms.unix;
16 };