2018-12-27 10:12:48 +00:00
|
|
|
{ lib, stdenv
|
2019-03-01 16:06:50 +00:00
|
|
|
, python, cmake, meson, vim, ruby
|
2019-05-31 21:55:09 +01:00
|
|
|
, which, fetchFromGitHub, fetchgit, fetchurl, fetchzip
|
2019-02-15 22:15:02 +00:00
|
|
|
, llvmPackages, rustPlatform
|
2019-03-26 21:08:21 +00:00
|
|
|
, xkb-switch, fzf, skim, stylish-haskell
|
2018-09-14 05:36:29 +01:00
|
|
|
, python3, boost, icu, ncurses
|
|
|
|
, ycmd, rake
|
2018-12-31 13:47:57 +00:00
|
|
|
, gobject-introspection, glib, wrapGAppsHook
|
2018-09-14 05:36:29 +01:00
|
|
|
, substituteAll
|
|
|
|
, languagetool
|
|
|
|
, Cocoa, CoreFoundation, CoreServices
|
|
|
|
, buildVimPluginFrom2Nix
|
2018-10-31 17:46:59 +00:00
|
|
|
|
2019-07-08 20:08:54 +01:00
|
|
|
# coc-go dependency
|
|
|
|
, go
|
|
|
|
|
2019-08-03 00:20:54 +01:00
|
|
|
# deoplete-khard dependency
|
|
|
|
, khard
|
|
|
|
|
2020-01-04 19:27:16 +00:00
|
|
|
# vim-go dependencies
|
2018-10-31 17:46:59 +00:00
|
|
|
, asmfmt, delve, errcheck, godef, golint
|
2018-11-15 02:33:38 +00:00
|
|
|
, gomodifytags, gotags, gotools, go-motion
|
2018-10-31 17:46:59 +00:00
|
|
|
, gnused, reftools, gogetdoc, gometalinter
|
2018-11-06 06:14:10 +00:00
|
|
|
, impl, iferr, gocode, gocode-gomod, go-tools
|
2019-03-04 07:33:14 +00:00
|
|
|
|
2020-01-04 19:27:16 +00:00
|
|
|
# direnv-vim dependencies
|
|
|
|
, direnv
|
|
|
|
|
2019-07-08 20:08:54 +01:00
|
|
|
# vCoolor dependency
|
2019-03-04 07:33:14 +00:00
|
|
|
, gnome3
|
2018-09-14 05:36:29 +01:00
|
|
|
}:
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
self: super: {
|
2018-09-14 05:36:29 +01:00
|
|
|
|
|
|
|
vim2nix = buildVimPluginFrom2Nix {
|
2019-01-19 12:18:27 +00:00
|
|
|
pname = "vim2nix";
|
|
|
|
version = "1.0";
|
2018-09-14 05:36:29 +01:00
|
|
|
src = ./vim2nix;
|
2018-12-27 10:12:48 +00:00
|
|
|
dependencies = with super; [ vim-addon-manager ];
|
2018-09-14 05:36:29 +01:00
|
|
|
};
|
|
|
|
|
2019-02-19 11:51:16 +00:00
|
|
|
# Mainly used as a dependency for fzf-vim. Wraps the fzf program as a vim
|
|
|
|
# plugin, since part of the fzf vim plugin is included in the main fzf
|
|
|
|
# program.
|
2018-09-14 05:36:29 +01:00
|
|
|
fzfWrapper = buildVimPluginFrom2Nix {
|
2019-01-19 12:18:27 +00:00
|
|
|
pname = "fzf";
|
|
|
|
version = fzf.version;
|
2018-09-14 05:36:29 +01:00
|
|
|
src = fzf.src;
|
|
|
|
};
|
|
|
|
|
|
|
|
skim = buildVimPluginFrom2Nix {
|
2019-01-19 12:18:27 +00:00
|
|
|
pname = "skim";
|
|
|
|
version = skim.version;
|
2018-12-27 10:12:48 +00:00
|
|
|
src = skim.vim;
|
2018-09-14 05:36:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
LanguageClient-neovim = let
|
2019-11-20 21:02:09 +00:00
|
|
|
version = "0.1.155";
|
2019-02-15 22:15:02 +00:00
|
|
|
LanguageClient-neovim-src = fetchurl {
|
2019-05-21 09:38:18 +01:00
|
|
|
url = "https://github.com/autozimu/LanguageClient-neovim/archive/${version}.tar.gz";
|
2019-11-20 21:02:09 +00:00
|
|
|
sha256 = "0v9n450iwgvm1d4qwv742bjam3p747cvyrkapkgxy7n1ar8rz50i";
|
2018-09-14 05:36:29 +01:00
|
|
|
};
|
|
|
|
LanguageClient-neovim-bin = rustPlatform.buildRustPackage {
|
|
|
|
name = "LanguageClient-neovim-bin";
|
|
|
|
src = LanguageClient-neovim-src;
|
|
|
|
|
2019-11-20 21:02:09 +00:00
|
|
|
cargoSha256 = "139sj1aq0kr4r4qzhgcn2hb4dyvp5wxjz7bxbm0bbh9bv2pr98jq";
|
2018-09-14 05:36:29 +01:00
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices ];
|
|
|
|
|
|
|
|
# FIXME: Use impure version of CoreFoundation because of missing symbols.
|
|
|
|
# Undefined symbols for architecture x86_64: "_CFURLResourceIsReachable"
|
|
|
|
preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
export NIX_LDFLAGS="-F${CoreFoundation}/Library/Frameworks -framework CoreFoundation $NIX_LDFLAGS"
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
in buildVimPluginFrom2Nix {
|
2019-01-19 12:18:27 +00:00
|
|
|
pname = "LanguageClient-neovim";
|
2019-05-21 09:38:18 +01:00
|
|
|
inherit version;
|
2018-09-14 05:36:29 +01:00
|
|
|
src = LanguageClient-neovim-src;
|
|
|
|
|
2019-03-13 00:04:26 +00:00
|
|
|
propagatedBuildInputs = [ LanguageClient-neovim-bin ];
|
2018-09-14 05:36:29 +01:00
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
substituteInPlace "$out"/share/vim-plugins/LanguageClient-neovim/autoload/LanguageClient.vim \
|
|
|
|
--replace "let l:path = s:root . '/bin/'" "let l:path = '${LanguageClient-neovim-bin}' . '/bin/'"
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
clang_complete = super.clang_complete.overrideAttrs(old: {
|
2018-09-14 05:36:29 +01:00
|
|
|
# In addition to the arguments you pass to your compiler, you also need to
|
|
|
|
# specify the path of the C++ std header (if you are using C++).
|
|
|
|
# These usually implicitly set by cc-wrapper around clang (pkgs/build-support/cc-wrapper).
|
|
|
|
# The linked ruby code shows generates the required '.clang_complete' for cmake based projects
|
|
|
|
# https://gist.github.com/Mic92/135e83803ed29162817fce4098dec144
|
|
|
|
# as an alternative you can execute the following command:
|
|
|
|
# $ eval echo $(nix-instantiate --eval --expr 'with (import <nixpkgs>) {}; clang.default_cxx_stdlib_compile')
|
|
|
|
preFixup = ''
|
|
|
|
substituteInPlace "$out"/share/vim-plugins/clang_complete/plugin/clang_complete.vim \
|
2018-10-20 13:54:46 +01:00
|
|
|
--replace "let g:clang_library_path = '' + "''" + ''" "let g:clang_library_path='${llvmPackages.clang.cc.lib}/lib/libclang.so'"
|
2018-06-17 16:39:02 +01:00
|
|
|
|
|
|
|
substituteInPlace "$out"/share/vim-plugins/clang_complete/plugin/libclang.py \
|
|
|
|
--replace "/usr/lib/clang" "${llvmPackages.clang.cc}/lib/clang"
|
2018-09-14 05:36:29 +01:00
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2020-01-04 19:27:16 +00:00
|
|
|
direnv-vim = super.direnv-vim.overrideAttrs(oa: {
|
|
|
|
preFixup = oa.preFixup or "" + ''
|
|
|
|
substituteInPlace $out/share/vim-plugins/direnv-vim/autoload/direnv.vim \
|
|
|
|
--replace "let s:direnv_cmd = get(g:, 'direnv_cmd', 'direnv')" \
|
|
|
|
"let s:direnv_cmd = get(g:, 'direnv_cmd', '${lib.getBin direnv}/bin/direnv')"
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
clighter8 = super.clighter8.overrideAttrs(old: {
|
2018-09-14 05:36:29 +01:00
|
|
|
preFixup = ''
|
2018-09-22 16:09:25 +01:00
|
|
|
sed "/^let g:clighter8_libclang_path/s|')$|${llvmPackages.clang.cc.lib}/lib/libclang.so')|" \
|
2018-09-14 05:36:29 +01:00
|
|
|
-i "$out"/share/vim-plugins/clighter8/plugin/clighter8.vim
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2019-07-08 20:08:54 +01:00
|
|
|
coc-go = super.coc-go.overrideAttrs(old: {
|
|
|
|
preFixup = ''
|
|
|
|
substituteInPlace "$out"/share/vim-plugins/coc-go/src/utils/tools.ts \
|
|
|
|
--replace 'const cmd = `GOPATH=''${gopath}; go ''${args}`' 'const cmd = `GOPATH=''${gopath}; ${go}/bin/go ''${args}`'
|
|
|
|
'';
|
|
|
|
});
|
2019-05-21 09:40:01 +01:00
|
|
|
|
2019-07-14 22:59:16 +01:00
|
|
|
# Only official releases contains the required index.js file
|
2019-11-19 05:37:49 +00:00
|
|
|
# NB: Make sure you pick a rev from the release branch!
|
2019-07-14 22:59:16 +01:00
|
|
|
coc-nvim = buildVimPluginFrom2Nix rec {
|
|
|
|
pname = "coc-nvim";
|
2020-01-06 04:52:32 +00:00
|
|
|
version = "2020-01-05";
|
2019-07-14 22:59:16 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "neoclide";
|
|
|
|
repo = "coc.nvim";
|
2020-01-06 04:52:32 +00:00
|
|
|
rev = "984779f2f825626aa9d441746d8b4ee079137c65";
|
|
|
|
sha256 = "0w7qnhi7wikr789h3w5p59l8wd81czpvbzbdanf8klf9ap4ma3yg";
|
2019-07-14 22:59:16 +01:00
|
|
|
};
|
|
|
|
};
|
2019-05-21 09:40:01 +01:00
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
command-t = super.command-t.overrideAttrs(old: {
|
2018-09-14 05:36:29 +01:00
|
|
|
buildInputs = [ ruby rake ];
|
|
|
|
buildPhase = ''
|
|
|
|
rake make
|
|
|
|
rm ruby/command-t/ext/command-t/*.o
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
cpsm = super.cpsm.overrideAttrs(old: {
|
2018-09-14 05:36:29 +01:00
|
|
|
buildInputs = [
|
|
|
|
python3
|
|
|
|
stdenv
|
|
|
|
cmake
|
|
|
|
boost
|
|
|
|
icu
|
|
|
|
ncurses
|
|
|
|
];
|
|
|
|
buildPhase = ''
|
|
|
|
patchShebangs .
|
|
|
|
export PY3=ON
|
|
|
|
./install.sh
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
ctrlp-cmatcher = super.ctrlp-cmatcher.overrideAttrs(old: {
|
2018-09-14 05:36:29 +01:00
|
|
|
buildInputs = [ python ];
|
|
|
|
buildPhase = ''
|
|
|
|
patchShebangs .
|
|
|
|
./install.sh
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2019-08-21 05:23:49 +01:00
|
|
|
defx-nvim = super.defx-nvim.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ nvim-yarp ];
|
|
|
|
});
|
|
|
|
|
2019-04-22 00:38:06 +01:00
|
|
|
deoplete-fish = super.deoplete-fish.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ deoplete-nvim vim-fish ];
|
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
deoplete-go = super.deoplete-go.overrideAttrs(old: {
|
2018-09-14 05:36:29 +01:00
|
|
|
buildInputs = [ python3 ];
|
|
|
|
buildPhase = ''
|
|
|
|
pushd ./rplugin/python3/deoplete/ujson
|
|
|
|
python3 setup.py build --build-base=$PWD/build --build-lib=$PWD/build
|
|
|
|
popd
|
|
|
|
find ./rplugin/ -name "ujson*.so" -exec mv -v {} ./rplugin/python3/ \;
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2019-08-03 00:20:54 +01:00
|
|
|
deoplete-khard = super.deoplete-khard.overrideAttrs(old: {
|
|
|
|
dependencies = [ self.deoplete-nvim ];
|
|
|
|
passthru.python3Dependencies = ps: [ (ps.toPythonModule khard) ];
|
|
|
|
meta = {
|
|
|
|
description = "Address-completion for khard via deoplete";
|
|
|
|
homepage = "https://github.com/nicoe/deoplete-khard";
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ jorsn ];
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
ensime-vim = super.ensime-vim.overrideAttrs(old: {
|
2018-09-14 05:36:29 +01:00
|
|
|
passthru.python3Dependencies = ps: with ps; [ sexpdata websocket_client ];
|
2018-12-27 10:12:48 +00:00
|
|
|
dependencies = with super; [ vimproc-vim vimshell-vim super.self forms ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
forms = super.forms.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ super.self ];
|
2018-11-07 19:54:58 +00:00
|
|
|
});
|
|
|
|
|
2019-07-22 19:06:05 +01:00
|
|
|
ghcid = super.ghcid.overrideAttrs(old: {
|
|
|
|
configurePhase = "cd plugins/nvim";
|
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
gist-vim = super.gist-vim.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ webapi-vim ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
2019-05-31 21:55:09 +01:00
|
|
|
gruvbox-community = buildVimPluginFrom2Nix {
|
|
|
|
pname = "gruvbox-community";
|
|
|
|
version = "2019-05-31";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gruvbox-community";
|
|
|
|
repo = "gruvbox";
|
|
|
|
rev = "e122091dad968a5524f3e8136615a479c7b6f247";
|
|
|
|
sha256 = "1hncjyfi1gbw62b2pngy5qxyzibrhbyzgfmm9a58sdh1272l8ls8";
|
|
|
|
};
|
|
|
|
meta.maintainers = with stdenv.lib.maintainers; [ minijackson ];
|
|
|
|
};
|
|
|
|
|
2019-03-01 16:06:50 +00:00
|
|
|
meson = buildVimPluginFrom2Nix {
|
|
|
|
inherit (meson) pname version src;
|
|
|
|
preInstall = "cd data/syntax-highlighting/vim";
|
|
|
|
meta.maintainers = with stdenv.lib.maintainers; [ vcunat ];
|
|
|
|
};
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
ncm2 = super.ncm2.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ nvim-yarp ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
ncm2-jedi = super.ncm2-jedi.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ nvim-yarp ncm2 ];
|
2018-12-23 22:31:34 +00:00
|
|
|
passthru.python3Dependencies = ps: with ps; [ jedi ];
|
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
ncm2-ultisnips = super.ncm2-ultisnips.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ ultisnips ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
2019-02-19 11:51:16 +00:00
|
|
|
fzf-vim = super.fzf-vim.overrideAttrs(old: {
|
|
|
|
dependencies = [ self.fzfWrapper ];
|
|
|
|
});
|
|
|
|
|
2018-12-31 13:47:57 +00:00
|
|
|
sved = let
|
|
|
|
# we put the script in its own derivation to benefit the magic of wrapGAppsHook
|
|
|
|
svedbackend = stdenv.mkDerivation {
|
|
|
|
name = "svedbackend-${super.sved.name}";
|
|
|
|
inherit (super.sved) src;
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook ];
|
|
|
|
buildInputs = [
|
|
|
|
gobject-introspection
|
|
|
|
glib
|
|
|
|
(python3.withPackages(ps: with ps; [ pygobject3 pynvim dbus-python ]))
|
|
|
|
];
|
|
|
|
preferLocalBuild = true;
|
|
|
|
installPhase = ''
|
|
|
|
install -Dt $out/bin ftplugin/evinceSync.py
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
in
|
|
|
|
super.sved.overrideAttrs(old: {
|
|
|
|
preferLocalBuild = true;
|
|
|
|
postPatch = ''
|
|
|
|
rm ftplugin/evinceSync.py
|
|
|
|
ln -s ${svedbackend}/bin/evinceSync.py ftplugin/evinceSync.py
|
|
|
|
'';
|
|
|
|
meta = {
|
|
|
|
description = "synctex support between vim/neovim and evince";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vimshell-vim = super.vimshell-vim.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ vimproc-vim ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-addon-manager = super.vim-addon-manager.overrideAttrs(old: {
|
2018-09-14 05:36:29 +01:00
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin Cocoa;
|
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-addon-actions = super.vim-addon-actions.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ vim-addon-mw-utils tlib_vim ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-addon-async = super.vim-addon-async.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ vim-addon-signs ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-addon-background-cmd = super.vim-addon-background-cmd.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ vim-addon-mw-utils ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-addon-completion = super.vim-addon-completion.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ tlib_vim ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-addon-goto-thing-at-cursor = super.vim-addon-goto-thing-at-cursor.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ tlib_vim ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-addon-mru = super.vim-addon-mru.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ vim-addon-other vim-addon-mw-utils ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-addon-nix = super.vim-addon-nix.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [
|
2018-12-24 12:02:31 +00:00
|
|
|
vim-addon-completion
|
|
|
|
vim-addon-goto-thing-at-cursor
|
|
|
|
vim-addon-errorformats
|
|
|
|
vim-addon-actions
|
|
|
|
vim-addon-mw-utils tlib_vim
|
2018-09-14 05:36:29 +01:00
|
|
|
];
|
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-addon-sql = super.vim-addon-sql.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ vim-addon-completion vim-addon-background-cmd tlib_vim ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-addon-syntax-checker = super.vim-addon-syntax-checker.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ vim-addon-mw-utils tlib_vim ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-addon-toggle-buffer = super.vim-addon-toggle-buffer.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ vim-addon-mw-utils tlib_vim ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-addon-xdebug = super.vim-addon-xdebug.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ webapi-vim vim-addon-mw-utils vim-addon-signs vim-addon-async ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-bazel = super.vim-bazel.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ vim-maktaba ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-codefmt = super.vim-codefmt.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ vim-maktaba ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-easytags = super.vim-easytags.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ vim-misc ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
2018-10-31 17:46:59 +00:00
|
|
|
# change the go_bin_path to point to a path in the nix store. See the code in
|
|
|
|
# fatih/vim-go here
|
|
|
|
# https://github.com/fatih/vim-go/blob/155836d47052ea9c9bac81ba3e937f6f22c8e384/autoload/go/path.vim#L154-L159
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-go = super.vim-go.overrideAttrs(old: let
|
2018-10-31 17:46:59 +00:00
|
|
|
binPath = lib.makeBinPath [
|
|
|
|
asmfmt
|
|
|
|
delve
|
|
|
|
errcheck
|
2018-11-15 02:33:38 +00:00
|
|
|
go-motion
|
2018-11-06 06:14:10 +00:00
|
|
|
go-tools
|
|
|
|
gocode
|
|
|
|
gocode-gomod
|
2018-10-31 17:46:59 +00:00
|
|
|
godef
|
|
|
|
gogetdoc
|
|
|
|
golint
|
|
|
|
gometalinter
|
|
|
|
gomodifytags
|
|
|
|
gotags
|
|
|
|
gotools
|
|
|
|
iferr
|
|
|
|
impl
|
|
|
|
reftools
|
|
|
|
];
|
|
|
|
in {
|
|
|
|
postPatch = ''
|
|
|
|
${gnused}/bin/sed \
|
2018-11-06 01:07:54 +00:00
|
|
|
-Ee 's@"go_bin_path", ""@"go_bin_path", "${binPath}"@g' \
|
|
|
|
-i autoload/go/config.vim
|
2018-10-31 17:46:59 +00:00
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-grammarous = super.vim-grammarous.overrideAttrs(old: {
|
2018-09-14 05:36:29 +01:00
|
|
|
# use `:GrammarousCheck` to initialize checking
|
|
|
|
# In neovim, you also want to use set
|
|
|
|
# let g:grammarous#show_first_error = 1
|
|
|
|
# see https://github.com/rhysd/vim-grammarous/issues/39
|
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./patches/vim-grammarous/set_default_languagetool.patch;
|
|
|
|
inherit languagetool;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-hier = super.vim-hier.overrideAttrs(old: {
|
2018-09-14 05:36:29 +01:00
|
|
|
buildInputs = [ vim ];
|
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-isort = super.vim-isort.overrideAttrs(old: {
|
2018-09-14 05:36:29 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace ftplugin/python_vimisort.vim \
|
2018-12-27 10:12:48 +00:00
|
|
|
--replace 'import vim' 'import vim; import sys; sys.path.append("${python.pkgs.isort}/${python.sitePackages}")'
|
2018-09-14 05:36:29 +01:00
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2019-11-07 18:46:35 +00:00
|
|
|
vim-metamath = super.vim-metamath.overrideAttrs(old: {
|
|
|
|
preInstall = "cd vim";
|
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-snipmate = super.vim-snipmate.overrideAttrs(old: {
|
|
|
|
dependencies = with super; [ vim-addon-mw-utils tlib_vim ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-wakatime = super.vim-wakatime.overrideAttrs(old: {
|
2018-09-14 05:36:29 +01:00
|
|
|
buildInputs = [ python ];
|
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-xdebug = super.vim-xdebug.overrideAttrs(old: {
|
2018-09-14 05:36:29 +01:00
|
|
|
postInstall = false;
|
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-xkbswitch = super.vim-xkbswitch.overrideAttrs(old: {
|
2018-09-14 05:36:29 +01:00
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace plugin/xkbswitch.vim \
|
2019-01-02 16:09:15 +00:00
|
|
|
--replace /usr/local/lib/libxkbswitch.so ${xkb-switch}/lib/libxkbswitch.so
|
2018-09-14 05:36:29 +01:00
|
|
|
'';
|
2019-01-02 16:09:15 +00:00
|
|
|
buildInputs = [ xkb-switch ];
|
2018-09-14 05:36:29 +01:00
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vim-yapf = super.vim-yapf.overrideAttrs(old: {
|
2018-09-14 05:36:29 +01:00
|
|
|
buildPhase = ''
|
|
|
|
substituteInPlace ftplugin/python_yapf.vim \
|
2018-12-27 10:12:48 +00:00
|
|
|
--replace '"yapf"' '"${python3.pkgs.yapf}/bin/yapf"'
|
2018-09-14 05:36:29 +01:00
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
vimproc-vim = super.vimproc-vim.overrideAttrs(old: {
|
2018-09-14 05:36:29 +01:00
|
|
|
buildInputs = [ which ];
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
substituteInPlace autoload/vimproc.vim \
|
|
|
|
--replace vimproc_mac.so vimproc_unix.so \
|
|
|
|
--replace vimproc_linux64.so vimproc_unix.so \
|
|
|
|
--replace vimproc_linux32.so vimproc_unix.so
|
|
|
|
make -f make_unix.mak
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
YankRing-vim = super.YankRing-vim.overrideAttrs(old: {
|
2018-09-14 05:36:29 +01:00
|
|
|
sourceRoot = ".";
|
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
youcompleteme = super.youcompleteme.overrideAttrs(old: {
|
2018-09-14 05:36:29 +01:00
|
|
|
buildPhase = ''
|
|
|
|
substituteInPlace plugin/youcompleteme.vim \
|
2019-11-08 23:21:47 +00:00
|
|
|
--replace "'ycm_path_to_python_interpreter', '''" \
|
|
|
|
"'ycm_path_to_python_interpreter', '${python3}/bin/python3'"
|
2018-09-14 05:36:29 +01:00
|
|
|
|
|
|
|
rm -r third_party/ycmd
|
|
|
|
ln -s ${ycmd}/lib/ycmd third_party
|
|
|
|
'';
|
|
|
|
|
2019-07-03 15:17:11 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-09-14 05:36:29 +01:00
|
|
|
description = "A code-completion engine for Vim";
|
2019-07-03 15:17:11 +01:00
|
|
|
homepage = "https://github.com/Valloric/YouCompleteMe";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ marcweber jagajaga ];
|
|
|
|
platforms = platforms.unix;
|
2018-09-14 05:36:29 +01:00
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2018-12-27 10:12:48 +00:00
|
|
|
jedi-vim = super.jedi-vim.overrideAttrs(old: {
|
2018-11-04 12:23:26 +00:00
|
|
|
# checking for python3 support in vim would be neat, too, but nobody else seems to care
|
2018-12-27 10:12:48 +00:00
|
|
|
buildInputs = [ python3.pkgs.jedi ];
|
2018-11-04 12:23:26 +00:00
|
|
|
meta = {
|
|
|
|
description = "code-completion for python using python-jedi";
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2019-03-26 21:08:21 +00:00
|
|
|
vim-stylish-haskell = super.vim-stylish-haskell.overrideAttrs (old: {
|
|
|
|
postPatch = old.postPatch or "" + ''
|
|
|
|
substituteInPlace ftplugin/haskell/stylish-haskell.vim --replace \
|
|
|
|
'g:stylish_haskell_command = "stylish-haskell"' \
|
|
|
|
'g:stylish_haskell_command = "${stylish-haskell}/bin/stylish-haskell"'
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2019-03-04 07:33:14 +00:00
|
|
|
vCoolor-vim = super.vCoolor-vim.overrideAttrs(old: {
|
|
|
|
# on linux can use either Zenity or Yad.
|
|
|
|
propagatedBuildInputs = [ gnome3.zenity ];
|
|
|
|
meta = {
|
|
|
|
description = "Simple color selector/picker plugin";
|
|
|
|
license = stdenv.lib.licenses.publicDomain;
|
|
|
|
};
|
|
|
|
});
|
2019-03-11 02:44:01 +00:00
|
|
|
|
|
|
|
unicode-vim = let
|
|
|
|
unicode-data = fetchurl {
|
|
|
|
url = http://www.unicode.org/Public/UNIDATA/UnicodeData.txt;
|
|
|
|
sha256 = "16b0jzvvzarnlxdvs2izd5ia0ipbd87md143dc6lv6xpdqcs75s9";
|
|
|
|
};
|
|
|
|
in super.unicode-vim.overrideAttrs(old: {
|
|
|
|
|
|
|
|
# redirect to /dev/null else changes terminal color
|
|
|
|
buildPhase = ''
|
|
|
|
cp "${unicode-data}" autoload/unicode/UnicodeData.txt
|
|
|
|
echo "Building unicode cache"
|
|
|
|
${vim}/bin/vim --cmd ":set rtp^=$PWD" -c 'ru plugin/unicode.vim' -c 'UnicodeCache' -c ':echohl Normal' -c ':q' > /dev/null
|
|
|
|
'';
|
|
|
|
});
|
2018-09-14 05:36:29 +01:00
|
|
|
}
|