Merge pull request #47221 from Mic92/vim-additional-nix-code

vim: remove legacy additional-nix-code

authored by Jörg Thalheim and committed by GitHub 82e739a0 2babfb5a

-105
-1
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/YankRing
··· 1 - sourceRoot = ".";
-11
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/clang_complete
··· 1 - # In addition to the arguments you pass to your compiler, you also need to 2 - # specify the path of the C++ std header (if you are using C++). 3 - # These usually implicitly set by cc-wrapper around clang (pkgs/build-support/cc-wrapper). 4 - # The linked ruby code shows generates the required '.clang_complete' for cmake based projects 5 - # https://gist.github.com/Mic92/135e83803ed29162817fce4098dec144 6 - # as an alternative you can execute the following command: 7 - # $ eval echo $(nix-instantiate --eval --expr 'with (import <nixpkgs>) {}; clang.default_cxx_stdlib_compile') 8 - preFixup = '' 9 - substituteInPlace "$out"/share/vim-plugins/clang_complete/plugin/clang_complete.vim \ 10 - --replace "let g:clang_library_path = '' + "''" + ''" "let g:clang_library_path='${llvmPackages.clang.cc}/lib/libclang.so'" 11 - '';
-4
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/clighter8
··· 1 - preFixup = '' 2 - sed "/^let g:clighter8_libclang_path/s|')$|${llvmPackages.clang.cc}/lib/libclang.so')|" \ 3 - -i "$out"/share/vim-plugins/clighter8/plugin/clighter8.vim 4 - '';
-5
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/command-t
··· 1 - buildInputs = [ ruby rake ]; 2 - buildPhase = '' 3 - rake make 4 - rm ruby/command-t/ext/command-t/*.o 5 - '';
-13
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/cpsm
··· 1 - buildInputs = [ 2 - python3 3 - stdenv 4 - cmake 5 - boost 6 - icu 7 - ncurses 8 - ]; 9 - buildPhase = '' 10 - patchShebangs . 11 - export PY3=ON 12 - ./install.sh 13 - '';
-5
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/ctrlp-cmatcher
··· 1 - buildInputs = [ python ]; 2 - buildPhase = '' 3 - patchShebangs . 4 - ./install.sh 5 - '';
-7
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/deoplete-go
··· 1 - buildInputs = [ python3 ]; 2 - buildPhase = '' 3 - pushd ./rplugin/python3/deoplete/ujson 4 - python3 setup.py build --build-base=$PWD/build --build-lib=$PWD/build 5 - popd 6 - find ./rplugin/ -name "ujson*.so" -exec mv -v {} ./rplugin/python3/ \; 7 - '';
-1
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/ensime-vim
··· 1 - passthru.python3Dependencies = ps: with ps; [ sexpdata websocket_client ];
-6
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/taglist
··· 1 - setSourceRoot = '' 2 - export sourceRoot=taglist 3 - mkdir taglist 4 - mv doc taglist 5 - mv plugin taglist 6 - '';
-1
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/vim-addon-manager
··· 1 - buildInputs = stdenv.lib.optional stdenv.isDarwin Cocoa;
-10
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/vim-grammarous
··· 1 - # use `:GrammarousCheck` to initialize checking 2 - # In neovim, you also want to use set 3 - # let g:grammarous#show_first_error = 1 4 - # see https://github.com/rhysd/vim-grammarous/issues/39 5 - patches = [ 6 - (substituteAll { 7 - src = ./patches/vim-grammarous/set_default_languagetool.patch; 8 - inherit languagetool; 9 - }) 10 - ];
-1
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/vim-hier
··· 1 - buildInputs = [ vim ];
-4
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/vim-isort
··· 1 - postPatch = '' 2 - substituteInPlace ftplugin/python_vimisort.vim \ 3 - --replace 'import vim' 'import vim; import sys; sys.path.append("${pythonPackages.isort}/${python.sitePackages}")' 4 - '';
-1
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/vim-wakatime
··· 1 - buildInputs = [ python ];
-1
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/vim-xdebug
··· 1 - postInstall = false;
-5
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/vim-xkbswitch
··· 1 - patchPhase = '' 2 - substituteInPlace plugin/xkbswitch.vim \ 3 - --replace /usr/local/lib/libxkbswitch.so ${xkb_switch}/lib/libxkbswitch.so 4 - ''; 5 - buildInputs = [ xkb_switch ];
-4
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/vim-yapf
··· 1 - buildPhase = '' 2 - substituteInPlace ftplugin/python_yapf.vim \ 3 - --replace '"yapf"' '"${python3Packages.yapf}/bin/yapf"' 4 - '';
-9
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/vimproc.vim
··· 1 - buildInputs = [ which ]; 2 - 3 - buildPhase = '' 4 - substituteInPlace autoload/vimproc.vim \ 5 - --replace vimproc_mac.so vimproc_unix.so \ 6 - --replace vimproc_linux64.so vimproc_unix.so \ 7 - --replace vimproc_linux32.so vimproc_unix.so 8 - make -f make_unix.mak 9 - '';
-16
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme
··· 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 = https://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 - };