2369 lines
75 KiB
Nix
2369 lines
75 KiB
Nix
# TODO check that no license information gets lost
|
|
{ fetchurl, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip
|
|
, which, fetchgit, llvmPackages
|
|
, xkb_switch, rustracerd, fzf
|
|
, python3, boost, icu
|
|
, ycmd
|
|
, pythonPackages, python3Packages
|
|
, Cocoa ? null
|
|
}:
|
|
|
|
let
|
|
|
|
inherit (vimUtils.override {inherit vim;}) rtpPath addRtp buildVimPlugin
|
|
buildVimPluginFrom2Nix vimHelpTags;
|
|
in
|
|
|
|
# TL;DR
|
|
# Add your plugin to ./vim-plugin-names
|
|
# Regenerate via `nix-build -Q -A vimPlugins.pluginnames2nix; ./result/bin/vim-plugin-names-to-nix`
|
|
# Copy the generated expression(s) into this file.
|
|
# If plugin is complicated then make changes to ./vim2nix/additional-nix-code
|
|
|
|
# This attrs contains two sections:
|
|
# The first contains plugins added manually, the second contains plugins
|
|
# generated by call nix#ExportPluginsForNix.
|
|
# Documentation & usage see vim-utils.nix.
|
|
# attribute names should be the same as used by vim-pi to make dependency
|
|
# resolution work
|
|
rec {
|
|
# This is not a plugin, it provides bin/vim-open-buffer-with-plugins-derivations
|
|
# which recreates this the following derivations based on ./vim-plugin-names
|
|
pluginnames2nix = vimUtils.pluginnames2Nix {
|
|
name = "vim-plugin-names-to-nix";
|
|
namefiles = [./vim-plugin-names];
|
|
};
|
|
|
|
# Section I
|
|
vim-addon-vim2nix = vim2nix;
|
|
|
|
vim2nix = buildVimPluginFrom2Nix { # use it to update plugins
|
|
name = "vim2nix";
|
|
src = ./vim2nix;
|
|
dependencies = ["vim-addon-manager"];
|
|
};
|
|
|
|
|
|
# Section II
|
|
# Update with vimUtils.vimPlugins.pluginnames2Nix command
|
|
|
|
# aliasess
|
|
"sourcemap.vim" = sourcemap;
|
|
Colour_Sampler_Pack = Colour-Sampler-Pack;
|
|
YouCompleteMe = youcompleteme;
|
|
airline = vim-airline;
|
|
alternative = a-vim; # backwards compat, added 2014-10-21
|
|
calendar = calendar-vim;
|
|
coffee-script = vim-coffee-script;
|
|
coffeeScript = coffee-script; # backwards compat, added 2014-10-18
|
|
colors-solarized = Solarized;
|
|
colorsamplerpack = Colour_Sampler_Pack;
|
|
command_T = command-t; # backwards compat, added 2014-10-18
|
|
css_color_5056 = vim-css-color;
|
|
ctrlp = ctrlp-vim;
|
|
easy-align = vim-easy-align;
|
|
easymotion = vim-easymotion;
|
|
eighties = vim-eighties;
|
|
ghc-mod-vim = ghcmod;
|
|
gist-vim = Gist;
|
|
gitgutter = vim-gitgutter;
|
|
gundo = gundo-vim;
|
|
Gundo = gundo-vim; # backwards compat, added 2015-10-03
|
|
haskellConceal = haskellconceal; # backwards compat, added 2014-10-18
|
|
haskellconceal = vim-haskellconceal;
|
|
haskellConcealPlus = vim-haskellConcealPlus;
|
|
hier = vim-hier;
|
|
hlint-refactor = hlint-refactor-vim;
|
|
hoogle = Hoogle;
|
|
ipython = vim-ipython;
|
|
latex-live-preview = vim-latex-live-preview;
|
|
multiple-cursors = vim-multiple-cursors;
|
|
necoGhc = neco-ghc; # backwards compat, added 2014-10-18
|
|
neocomplete = neocomplete-vim;
|
|
neosnippet = neosnippet-vim;
|
|
nerdcommenter = The_NERD_Commenter;
|
|
nerdtree = The_NERD_tree;
|
|
polyglot = vim-polyglot;
|
|
quickrun = vim-quickrun;
|
|
repeat = vim-repeat;
|
|
signature = vim-signature;
|
|
stylish-haskell = vim-stylish-haskell;
|
|
stylishHaskell = stylish-haskell; # backwards compat, added 2014-10-18
|
|
supertab = Supertab;
|
|
syntastic = Syntastic;
|
|
tabular = Tabular;
|
|
tagbar = Tagbar;
|
|
thumbnail = thumbnail-vim;
|
|
tmux-navigator = vim-tmux-navigator;
|
|
tmuxNavigator = tmux-navigator; # backwards compat, added 2014-10-18
|
|
tslime = tslime-vim;
|
|
unite = unite-vim;
|
|
vimproc = vimproc-vim;
|
|
vimshell = vimshell-vim;
|
|
watchdogs = vim-watchdogs;
|
|
webapi-vim = WebAPI;
|
|
wombat256 = wombat256-vim; # backwards compat, added 2015-7-8
|
|
yankring = YankRing;
|
|
|
|
fzfWrapper = buildVimPluginFrom2Nix {
|
|
name = fzf.name;
|
|
src = fzf.src;
|
|
dependencies = [];
|
|
};
|
|
|
|
# --- generated packages bellow this line ---
|
|
|
|
|
|
CSApprox = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "CSApprox-2013-07-26";
|
|
src = fetchgit {
|
|
url = "git://github.com/godlygeek/csapprox";
|
|
rev = "7981dac51d8b6776985aa08cb7b5ee98ea7f2ddd";
|
|
sha256 = "08g4x6nnd6hkgm2daa5ihhz75pcdx3jzzv8rfjls80qajlhx5rf6";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
CheckAttach = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "CheckAttach-2017-03-15";
|
|
src = fetchgit {
|
|
url = "git://github.com/chrisbra/CheckAttach";
|
|
rev = "b583efd45e03902438a55299623390a0f9253513";
|
|
sha256 = "0j1nx8ryrlixisd8z2d24k1xk2yrqk4i0ar8m4vq3jlr74309a34";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
Gist = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Gist-2016-10-10";
|
|
src = fetchgit {
|
|
url = "git://github.com/mattn/gist-vim";
|
|
rev = "f0d63579eab7548cf12f979dc52ef5a370ecbe63";
|
|
sha256 = "06nix49j4inxy3rkcv32f4ka89g4crqwfqnrm3b76iwwky8m2p17";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
Hoogle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Hoogle-2017-03-01";
|
|
src = fetchgit {
|
|
url = "git://github.com/Twinside/vim-hoogle";
|
|
rev = "cfb0c864dbacf6f916ba05c4a688e21154aa971b";
|
|
sha256 = "0gddyh47gwy684kjs9yxfnc0lg8jq9w5pdyv3yrvypyiqi51vw1b";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
Solarized = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Solarized-2011-05-09";
|
|
src = fetchgit {
|
|
url = "git://github.com/altercation/vim-colors-solarized";
|
|
rev = "528a59f26d12278698bb946f8fb82a63711eec21";
|
|
sha256 = "05d3lmd1shyagvr3jygqghxd3k8a4vp32723fvxdm57fdrlyzcm1";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
Supertab = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Supertab-2016-11-27";
|
|
src = fetchgit {
|
|
url = "git://github.com/ervandew/supertab";
|
|
rev = "cdaa5c27c5a7f8b08a43d0b2e65929512299e33a";
|
|
sha256 = "0hym28chljfglqdrxajbh92r35cppxl5wyxdrgqwpa0am9d2xdvg";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
Syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Syntastic-2017-05-15";
|
|
src = fetchgit {
|
|
url = "git://github.com/scrooloose/syntastic";
|
|
rev = "5efeecece3f512076513e8ee1e7444157a16a77b";
|
|
sha256 = "1dzhgmgbfh9dda72y3d5gb7zjjm2k55wd4z3wy8ixip3cp4mkiqx";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
Tabular = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Tabular-2016-05-04";
|
|
src = fetchgit {
|
|
url = "git://github.com/godlygeek/tabular";
|
|
rev = "00e1e7fcdbc6d753e0bc8043e0d2546fa81bf367";
|
|
sha256 = "185jpisk9hamcwb6aiavdzjdbbigzdra8f4mgs98r9cm9j448xkz";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
Tagbar = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Tagbar-2017-02-18";
|
|
src = fetchgit {
|
|
url = "git://github.com/majutsushi/tagbar";
|
|
rev = "959f48798136bfd4ce60075d3c86c580fcf5e5c5";
|
|
sha256 = "02v30744w2jcavwk9cjdy51ldpqylj6pgg6zavj4dni7knbnq3jm";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
The_NERD_Commenter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "The_NERD_Commenter-2017-04-07";
|
|
src = fetchgit {
|
|
url = "git://github.com/scrooloose/nerdcommenter";
|
|
rev = "285902752f7ab2052ac700a6d29b263dd5788afb";
|
|
sha256 = "1hd5ibpvxra8asr4zp0l68wc4djjgfbvh7kzmxc1r7jqr70wj8dl";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
The_NERD_tree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "The_NERD_tree-2017-05-20";
|
|
src = fetchgit {
|
|
url = "git://github.com/scrooloose/nerdtree";
|
|
rev = "0b84d458d607f0326b7718c92ba20f2627f63342";
|
|
sha256 = "0gyqaz29ps9hidgnllcpwz91qac9r4xfqb43azgrydzv3j8m7lya";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
UltiSnips = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "UltiSnips-2017-01-20";
|
|
src = fetchgit {
|
|
url = "git://github.com/SirVer/ultisnips";
|
|
rev = "5352d98f212e273b3e8b1d84efdbe2d6a6d557e9";
|
|
sha256 = "0d27823qnfd9qcj2a2x77slsw725jfa9s40ilw4qp9ab03bma1ci";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
VimOutliner = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "VimOutliner-2017-05-03";
|
|
src = fetchgit {
|
|
url = "git://github.com/vimoutliner/vimoutliner";
|
|
rev = "fd2ca709acc161a9e65e75577c2bfefde173401a";
|
|
sha256 = "13cqhajfz6rag7qwj2rws5gjs1f2jlrb2s30kyjrx227i05vikkn";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
WebAPI = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "WebAPI-2017-04-26";
|
|
src = fetchgit {
|
|
url = "git://github.com/mattn/webapi-vim";
|
|
rev = "e76f2da9a8f292a999a95ae688534f76c2dca9bd";
|
|
sha256 = "02970g7blj478vid88gayba39rdcm9236nigkrijapyf5rd24zhh";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
YankRing = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "YankRing";
|
|
src = fetchurl {
|
|
url = "http://www.vim.org/scripts/download_script.php?src_id=23487";
|
|
name = "yankring_190.zip";
|
|
sha256 = "0nnxpsfjp2p9jvs3y5ynnd5s56snz9927zdp9bgmay2jgxfmp0si";
|
|
};
|
|
buildInputs = [ unzip ];
|
|
dependencies = [];
|
|
meta = {
|
|
url = "http://www.vim.org/scripts/script.php?script_id=1234";
|
|
};
|
|
|
|
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
|
|
name = "commentary-2017-03-12";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-commentary";
|
|
rev = "be79030b3e8c0ee3c5f45b4333919e4830531e80";
|
|
sha256 = "1msbmbz96wa88ymjvcrbr07mxdrsjy1w2hl7z4pihf318ryq98cm";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
ctrlp-cmatcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "ctrlp-cmatcher-2015-10-15";
|
|
src = fetchgit {
|
|
url = "git://github.com/JazzCore/ctrlp-cmatcher";
|
|
rev = "6c36334f106b6fd981d23e724e9a618734cab43a";
|
|
sha256 = "1573kd6xf3n8sxlz2j4zadai4rnc7k3s9c54648yfzickwn57d8q";
|
|
};
|
|
dependencies = [];
|
|
buildInputs = [ python ];
|
|
buildPhase = ''
|
|
patchShebangs .
|
|
./install.sh
|
|
'';
|
|
};
|
|
|
|
ctrlp-py-matcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "ctrlp-py-matcher-2017-01-05";
|
|
src = fetchgit {
|
|
url = "git://github.com/FelikZ/ctrlp-py-matcher";
|
|
rev = "a0710a4937ab9dc10bc0a8b56b41fcc88534147c";
|
|
sha256 = "198y8998sx2maarn2vawx8hqldsfbnn4i6rlg56qw6brsrssssx2";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
ctrlp-z = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "ctrlp-z-2015-10-17";
|
|
src = fetchgit {
|
|
url = "git://github.com/amiorin/ctrlp-z";
|
|
rev = "d1a69ec623ce24b9a30fc8fe3cd468c322b03026";
|
|
sha256 = "16nsj1g8lqmyizlb5ijwhf4dsmh0xv1kwqq6jxvhaf55vfga82yl";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
extradite = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "extradite-2015-09-22";
|
|
src = fetchgit {
|
|
url = "git://github.com/int3/vim-extradite";
|
|
rev = "52326f6d333cdbb9e9c6d6772af87f4f39c00526";
|
|
sha256 = "0c89i0spvdm9vi65q15qcmsfmwa9rds2wmaq1kf6s7q7ywvs6w8i";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "fugitive-2017-05-19";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-fugitive";
|
|
rev = "d6e7e20123ef3892c041e4d9fbaf67a68b144a94";
|
|
sha256 = "1fq3159pqwmf8z954r6vi0im790idnmgjrgh7raq8walcni72g78";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
ghcmod = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "ghcmod-2016-06-19";
|
|
src = fetchgit {
|
|
url = "git://github.com/eagletmt/ghcmod-vim";
|
|
rev = "1d192d13d68ab59f9f46497a0909bf24a7b7dfff";
|
|
sha256 = "0bzahgzagnf0a9zv86jhdf8nc3p0yfz9izv5n3lc8gc12cp47d0a";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-auto-save = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-auto-save-2017-03-10";
|
|
src = fetchgit {
|
|
url = "https://github.com/907th/vim-auto-save";
|
|
rev = "a81dea26d2a62dbe1a0f89aba5834aee40a89512";
|
|
sha256 = "16ljzp2rww9c13pl2ci2pqri1774qp3yhhh042n7vqxcwy80kjjc";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-autoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-autoformat-2017-05-18";
|
|
src = fetchgit {
|
|
url = "https://github.com/Chiel92/vim-autoformat";
|
|
rev = "31c2de23982973737d624e6a473098af100928a2";
|
|
sha256 = "140nl41pcac3xbw3scj9fmyrlsga4adnsgwn840nmcj1wcc287qh";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-nix-2017-04-30";
|
|
src = fetchgit {
|
|
url = "https://github.com/LnL7/vim-nix";
|
|
rev = "867488a04c2ddc47f0f235f37599a06472fea299";
|
|
sha256 = "1mwc06z9q45cigyxd0r9qnfs4ph6lbcwx50rf5lmpavakcn3vqir";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
tsuquyomi = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "tsuquyomi-2017-05-21";
|
|
src = fetchgit {
|
|
url = "https://github.com/Quramy/tsuquyomi";
|
|
rev = "cdae8ecde529019d50bdf2f25b782e9ee408a7c0";
|
|
sha256 = "07hadplv29pm6kv3ay6w7a6nwzrmxiwn3fmllgl2vfrnqx82fknx";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
deoplete-nvim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "deoplete-nvim-2017-05-20";
|
|
src = fetchgit {
|
|
url = "https://github.com/Shougo/deoplete.nvim";
|
|
rev = "493a97d151b6b89993194b442ca5f6d5e969e9f8";
|
|
sha256 = "1k5ziaqciqif7as4fk2hnc0r8kva3bgvx5zi11k9qg541ixz29s2";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
Spacegray-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Spacegray-vim-2017-05-05";
|
|
src = fetchgit {
|
|
url = "https://github.com/ajh17/Spacegray.vim";
|
|
rev = "95a5adbbbba7fb641af847d8666b8cad20431333";
|
|
sha256 = "10p02n4arml1b4ah0bz754ifvkqnbms4j0wlgzqs5azb20y2kliv";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-closetag = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-closetag-2017-05-13";
|
|
src = fetchgit {
|
|
url = "https://github.com/alvan/vim-closetag";
|
|
rev = "52a0747c9e1a52b1aedcace4801657d63462718f";
|
|
sha256 = "0499cmyq7hs9b5rcnw1xd2w56xyw73qw9v5iqx3c7nsjka46ffys";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-css-color = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-css-color-2017-02-09";
|
|
src = fetchgit {
|
|
url = "https://github.com/ap/vim-css-color";
|
|
rev = "2411b84298eb6db034001f35ce7cc32c36f9b43b";
|
|
sha256 = "1igqshk7wkh1wgihnmxnlh84fb98fm9lm8lfyjpcz6x8rg5vpmwc";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
clighter8 = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "clighter8-2017-04-26";
|
|
src = fetchgit {
|
|
url = "https://github.com/bbchung/clighter8";
|
|
rev = "8b892435fda7cb32378c7e49a2064126dbb6b9af";
|
|
sha256 = "1ixqs1id9q24wwdw1izmznz8yk68pm74336ixhs8lbj9rn8my5gn";
|
|
};
|
|
dependencies = [];
|
|
preFixup = ''
|
|
sed "/^let g:clighter8_libclang_path/s|')$|${llvmPackages.clang.cc}/lib/libclang.so')|" \
|
|
-i "$out"/share/vim-plugins/clighter8/plugin/clighter8.vim
|
|
'';
|
|
};
|
|
|
|
neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "neomake-2017-05-21";
|
|
src = fetchgit {
|
|
url = "https://github.com/benekastah/neomake";
|
|
rev = "ec599098f76032a9a4d7d504afa2fefb722857ef";
|
|
sha256 = "184y5l13gb3ax2bpsnwyyy4m3np4w6v886cvx7lpzlihk2w97dp6";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-hdevtools = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-hdevtools-2017-03-11";
|
|
src = fetchgit {
|
|
url = "https://github.com/bitc/vim-hdevtools";
|
|
rev = "4ffdace7002915cb10d663a2c56386286c5b8e37";
|
|
sha256 = "0s7qd72962sc56j8xzpzikjs9k5s89d5p0j541abl8zm0mavmyka";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-trailing-whitespace = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-trailing-whitespace-2016-03-27";
|
|
src = fetchgit {
|
|
url = "https://github.com/bronson/vim-trailing-whitespace";
|
|
rev = "733fb64337b6da4a51c85a43450cd620d8b617b5";
|
|
sha256 = "1469bd744lf8vk1nnw7kyq4ahpw84crp614mkpq88cs6rhvjhcyw";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-sort-motion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-sort-motion-2017-04-27";
|
|
src = fetchgit {
|
|
url = "https://github.com/christoomey/vim-sort-motion";
|
|
rev = "9833b22b24b469574178bff4a305472d52bd93b8";
|
|
sha256 = "1rvg4c89vlhqdy0p76rn51hz5mz7qv5pckdacs5zz3g8rcpqxxwq";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-tmux-navigator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-tmux-navigator-2017-02-26";
|
|
src = fetchgit {
|
|
url = "https://github.com/christoomey/vim-tmux-navigator";
|
|
rev = "2fc1ed42ab580ab47c506ab0bef09f1dbb9ff04d";
|
|
sha256 = "1mw0x3kcxvhfypzd7yj6bcknp6c5bh4zb4r9b16n1r7gplvwv8jn";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
spacevim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "spacevim-2017-03-31";
|
|
src = fetchgit {
|
|
url = "https://github.com/ctjhoa/spacevim";
|
|
rev = "f4cd52c1746021bb3278c6a085e8d07f1c1a9258";
|
|
sha256 = "0y146z0w1cbqwzw84k479a5hxs1phg1s11fqfvszn8928fsm8c4d";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
ctrlp-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "ctrlp-vim-2017-04-28";
|
|
src = fetchgit {
|
|
url = "https://github.com/ctrlpvim/ctrlp.vim";
|
|
rev = "cbd52e3bdd388afd7accaba6e0aea754f32da271";
|
|
sha256 = "08d6zrwsdrpjm9az5zdzdx8c27dmnc9flvsfp3ig6yz6jinvwc1x";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
agda-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "agda-vim-2017-03-18";
|
|
src = fetchgit {
|
|
url = "https://github.com/derekelkins/agda-vim";
|
|
rev = "7f00093e485f07aa1daafa71e85306397c059402";
|
|
sha256 = "1yc1lhzir440jmv5aivhvn3bgxncz7p0vydla6mrf14gw6fqbp12";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-scala = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-scala-2017-04-29";
|
|
src = fetchgit {
|
|
url = "https://github.com/derekwyatt/vim-scala";
|
|
rev = "e7640f26e56f0be344d60a6098e05d6928fd396d";
|
|
sha256 = "17gyqzsjjsg48x760qpm31bi169bzq0g80nm88jjkjw75m9jbv2j";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-jade = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-jade-2017-04-07";
|
|
src = fetchgit {
|
|
url = "https://github.com/digitaltoad/vim-jade";
|
|
rev = "ddc5592f8c36bf4bd915c16b38b8c76292c2b975";
|
|
sha256 = "069pha18g1nlzg44k742vjxm4zwjd1qjzhfllkr35qaiflvjm84y";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
pony-vim-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "pony-vim-syntax-2016-01-23";
|
|
src = fetchgit {
|
|
url = "https://github.com/dleonard0/pony-vim-syntax";
|
|
rev = "a0ab2e14d5a3796ebec01ce196392dc1de349cb3";
|
|
sha256 = "1wraray7870hq75jqxyilxb125flhcgk9ysz437qbg75c495znl0";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-2017-05-17";
|
|
src = fetchgit {
|
|
url = "https://github.com/dracula/vim";
|
|
rev = "b7e11c087fe2a9e3023cdccf17985704e27b125d";
|
|
sha256 = "0480bs0df6jkfsi20mksbf5pix9js4mb0dfwwzbfj1c9xk7cn0z2";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
neco-ghc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "neco-ghc-2017-04-30";
|
|
src = fetchgit {
|
|
url = "https://github.com/eagletmt/neco-ghc";
|
|
rev = "aeb84b9ef05d1c5b0c835365ddcd424930fb0cd2";
|
|
sha256 = "1yhdrjqw5chq7jgk397swh4axpv6m4aqracyqmx4bb65pzqbwdxl";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
editorconfig-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "editorconfig-vim-2017-05-13";
|
|
src = fetchgit {
|
|
url = "https://github.com/editorconfig/editorconfig-vim";
|
|
rev = "a069da8426ec5b9fc4d9f83c783c999e9d20f7d0";
|
|
sha256 = "1zx5a8if3r77dnyidix7j0gi04y4pmmi5kfzlr3kjazj00606l79";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
acp = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "acp-2013-02-05";
|
|
src = fetchgit {
|
|
url = "https://github.com/eikenb/acp";
|
|
rev = "5c627cec37d0d3b1670cb250d84e176e8b0c644e";
|
|
sha256 = "0h7s4nvxin7m2caka7g1hhlxj1bbiwsvw8s2lqwlh7nq43v23ghg";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-elixir = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-elixir-2017-05-18";
|
|
src = fetchgit {
|
|
url = "https://github.com/elixir-lang/vim-elixir";
|
|
rev = "fe7daaaff030e217dffedf53cb5f426099281e3e";
|
|
sha256 = "09jqbymwf1m0c0wdsq93nryapzjw0fx0hwzzwxvwxygvnx3nvf22";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
elm-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "elm-vim-2017-02-27";
|
|
src = fetchgit {
|
|
url = "https://github.com/elmcast/elm-vim";
|
|
rev = "b47d013d1fdfecc9e19df8034439b8e379813696";
|
|
sha256 = "0ibmb02qal7q29brmq0jkd3rcnwp6yba9agza3av1x1ixvb61mlw";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-localvimrc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-localvimrc-2017-03-30";
|
|
src = fetchgit {
|
|
url = "https://github.com/embear/vim-localvimrc";
|
|
rev = "f2c576cda5a4dfd7a1030564c602dd6ab8589732";
|
|
sha256 = "10wvglf8dygai0094bwwcilffms0m3y36h2sb46iaqw8yz00d78b";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-haskellConcealPlus = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-haskellConcealPlus-2016-05-13";
|
|
src = fetchgit {
|
|
url = "https://github.com/enomsg/vim-haskellConcealPlus";
|
|
rev = "81dfb51ff8e471fb1f30659a10daaf1bdd65fb03";
|
|
sha256 = "0vm76gxw62lkyxccrlnn8sblfl3d51svwfra9wfixq4h51jdggyr";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
ensime-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "ensime-vim-2017-04-06";
|
|
src = fetchgit {
|
|
url = "https://github.com/ensime/ensime-vim";
|
|
rev = "4fd7886b169388e07261c525826c0e453094e446";
|
|
sha256 = "194qwj3glw3l9yxvd26vn10kl06v1sykqx2cznskqa3vj3z8jb01";
|
|
};
|
|
dependencies = ["vimproc" "vimshell" "self" "forms"];
|
|
|
|
};
|
|
|
|
YUNOcommit-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "YUNOcommit-vim-2014-11-26";
|
|
src = fetchgit {
|
|
url = "https://github.com/esneider/YUNOcommit.vim";
|
|
rev = "981082055a73ef076d7e27477874d2303153a448";
|
|
sha256 = "0mjc7fn405vcx1n7vadl98p5wgm6jxrlbdbkqgjq8f1m1ir81zab";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-go-2017-05-08";
|
|
src = fetchgit {
|
|
url = "https://github.com/fatih/vim-go";
|
|
rev = "7fb96896f3a1a41dfb5185336a057341eb7ad151";
|
|
sha256 = "0g9l68p1xsai2mlgy3lyvilz2s9lsjlgj0jjdinq4fky051fq8d9";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-colorschemes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-colorschemes-2016-08-01";
|
|
src = fetchgit {
|
|
url = "https://github.com/flazz/vim-colorschemes";
|
|
rev = "b8dff40f69f1873effbed97c759a8452ecb240ed";
|
|
sha256 = "1mb08l2crl5mal0jllh9s099w2bqcb88vfjw3z5zj1jn8bbpniaj";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
floobits-neovim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "floobits-neovim-2017-02-08";
|
|
src = fetchgit {
|
|
url = "https://github.com/floobits/floobits-neovim";
|
|
rev = "9755412fcd68cfc76a36aa000682a84d96013650";
|
|
sha256 = "1mn6kikygk86xblxg8kklkrrxagil4az76z0mzid847g4jw4hfd1";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
psc-ide-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "psc-ide-vim-2017-04-17";
|
|
src = fetchgit {
|
|
url = "https://github.com/frigoeu/psc-ide-vim";
|
|
rev = "deec92002a5a187ff8be3ae6060e202aa859d4cb";
|
|
sha256 = "0yjlp3rnlai2633slrhxr2g9sqqp1j9pqcm7h03gfgw6rh4kai9k";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-jsonnet = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-jsonnet-2017-04-06";
|
|
src = fetchgit {
|
|
url = "https://github.com/google/vim-jsonnet";
|
|
rev = "2637e273713322befc476760809d46500e6088f3";
|
|
sha256 = "0fxmqasznb3ra49r4j3fmksik7narnd3b6j1j4najp4l61x27ip2";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-jsdoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-jsdoc-2017-02-11";
|
|
src = fetchgit {
|
|
url = "https://github.com/heavenshell/vim-jsdoc";
|
|
rev = "cd8f084c3b4bd198620d45a007cee6b009b57b35";
|
|
sha256 = "0a2d9jwxjws8l7y89yn7xl07r5yh7r7987a8hfalvz12qmdmff1j";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-leader-guide = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-leader-guide-2017-03-18";
|
|
src = fetchgit {
|
|
url = "https://github.com/hecal3/vim-leader-guide";
|
|
rev = "6ac8c663e65c9c0ded70417b84f66ee59457893e";
|
|
sha256 = "1hqha3ig40ls15bnb10xpbl91swn0gxqnhmz5frkvvdzj4wq55fw";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
idris-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "idris-vim-2017-05-07";
|
|
src = fetchgit {
|
|
url = "https://github.com/idris-hackers/idris-vim";
|
|
rev = "7aeb9fc143730a4a52f2635248b5658c64696831";
|
|
sha256 = "0pg6q16z00g3imnb7d9pb0qv8jvnjipr0shqvlmqy0917rkhlapx";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
calendar-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "calendar-vim-2017-05-19";
|
|
src = fetchgit {
|
|
url = "https://github.com/itchyny/calendar.vim";
|
|
rev = "7571c1792b445cce5e98fd7df53b20b98ef28593";
|
|
sha256 = "08jxdyjy6jsrlmi7d3bwfpd1kmbaz0n7lh8cvmxh99kyymqlpn1m";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
lightline-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "lightline-vim-2017-04-21";
|
|
src = fetchgit {
|
|
url = "https://github.com/itchyny/lightline.vim";
|
|
rev = "6034e639e871cb33a436508a6c6ccbe3e236de4c";
|
|
sha256 = "0w37l1i8bfpcs6wx0h98c5b2f4kgi6b4357c0lhfmwprajh4pw7n";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
thumbnail-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "thumbnail-vim-2017-04-24";
|
|
src = fetchgit {
|
|
url = "https://github.com/itchyny/thumbnail.vim";
|
|
rev = "71cb5d48e59fc77149c1d1036ecd9e39f0b46a00";
|
|
sha256 = "0b25n28ri6n5rrvgfynv8rm5pzzxpnrnj1l3647pf2fjxd2z2rv5";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-ipython = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-ipython-2015-06-23";
|
|
src = fetchgit {
|
|
url = "https://github.com/ivanov/vim-ipython";
|
|
rev = "42499f094b805b90b683afa5009cee99abd0bb75";
|
|
sha256 = "10wpfvfs8yv1bvzra4d5zy5glp62gbalpayxx7mkalhr2ccppy3x";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-hier = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-hier-2011-08-27";
|
|
src = fetchgit {
|
|
url = "https://github.com/jceb/vim-hier";
|
|
rev = "0b8c365263551a67404ebd7e528c55e17c1d3de7";
|
|
sha256 = "118pd9sx1bl9vfr89xrf536hfx4l162a43a1qpwpkqxzb9a3ca7n";
|
|
};
|
|
dependencies = [];
|
|
buildInputs = [ vim ];
|
|
};
|
|
|
|
vim-orgmode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-orgmode-2017-04-19";
|
|
src = fetchgit {
|
|
url = "https://github.com/jceb/vim-orgmode";
|
|
rev = "8a5cb51fbb8d89b0151833a6deb654929818a964";
|
|
sha256 = "0siqzwblads3n69chqsifpgglcda2iz2k40q76llf78fw5ylqd16";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-buffergator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-buffergator-2017-02-05";
|
|
src = fetchgit {
|
|
url = "https://github.com/jeetsukumaran/vim-buffergator";
|
|
rev = "04dfbc0c78b0a29b340a99d0ff36ecf8f16e017d";
|
|
sha256 = "1z13qqmvzismz7f6ss2pk956adnqh14df8qrlzk9rgplknm4w6k7";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
tslime-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "tslime-vim-2016-06-14";
|
|
src = fetchgit {
|
|
url = "https://github.com/jgdavey/tslime.vim";
|
|
rev = "c980c76bbfc9a523fcf1edf08580d0d3a486e8f2";
|
|
sha256 = "0gifyxwlspfnkni886adwn9kc0dckanjk0097y8pwxh7qbwfydf1";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
auto-pairs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "auto-pairs-2017-03-22";
|
|
src = fetchgit {
|
|
url = "https://github.com/jiangmiao/auto-pairs";
|
|
rev = "20ec5b043f82ffa11a079f545438e6544ef112ed";
|
|
sha256 = "14pypb2kfrylhn73gx964hls040zaqnpl1am6f0yi01h524xz0xf";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-nerdtree-tabs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-nerdtree-tabs-2017-02-22";
|
|
src = fetchgit {
|
|
url = "https://github.com/jistr/vim-nerdtree-tabs";
|
|
rev = "01ae3cdc7018fa33f140cce3e7cdf210c04ffbab";
|
|
sha256 = "01z2xp95sqi5mxhdxm8q0zkx83rn16qbv884rj2irmbl1k8fhv62";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
zenburn = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "zenburn-2015-09-18";
|
|
src = fetchgit {
|
|
url = "https://github.com/jnurmine/zenburn";
|
|
rev = "f7847fb1531b91e2b4bb4aed5db3146f07765179";
|
|
sha256 = "1las12jznf25dkxrjk3s9l70c6wnpjisngmvi83bhw5gvx4c7mq5";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-colorstepper = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-colorstepper-2016-01-28";
|
|
src = fetchgit {
|
|
url = "https://github.com/jonbri/vim-colorstepper";
|
|
rev = "f23ba0d995d41508a2dc9471cf31d3d01a4b5f05";
|
|
sha256 = "05ykxn0gmh8liz0zv5hb8df1ajggxp88izq3825m0yb3ma3k1jqs";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-xdebug-2012-08-15";
|
|
src = fetchgit {
|
|
url = "https://github.com/joonty/vim-xdebug";
|
|
rev = "a4980fa65f7f159780593ee37c178281691ba2c4";
|
|
sha256 = "1qh18r0sm4gh95sjbi2hnflvxdl4gk00jyy3n7z4i1gnx9ihxjqw";
|
|
};
|
|
dependencies = [];
|
|
postInstall = false;
|
|
};
|
|
|
|
fzf-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "fzf-vim-2017-05-20";
|
|
src = fetchgit {
|
|
url = "https://github.com/junegunn/fzf.vim";
|
|
rev = "536b6ace35a16174fa35ea6ae5b27dc5c02469f6";
|
|
sha256 = "15wcjfla5r18d93vf5mhl6dwglj4a49c0jc0ijh2v8j3ilbjm29y";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
limelight-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "limelight-vim-2016-06-24";
|
|
src = fetchgit {
|
|
url = "https://github.com/junegunn/limelight.vim";
|
|
rev = "106fb5749d227a0de72e36068ed72798c6fd48e6";
|
|
sha256 = "0fp4yp50n5v5zx3a7afh9wip4nwcfhmdgdzwpnl79jvild1z9fgh";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-peekaboo = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-peekaboo-2017-03-20";
|
|
src = fetchgit {
|
|
url = "https://github.com/junegunn/vim-peekaboo";
|
|
rev = "a7c940b15b008afdcea096d3fc4d25e3e431eb49";
|
|
sha256 = "1rc4hr6vwj2mmrgz8lifxf9rvcw1rb5dahq649yn8ccw03x8zn6m";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-eighties = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-eighties-2016-12-15";
|
|
src = fetchgit {
|
|
url = "https://github.com/justincampbell/vim-eighties";
|
|
rev = "1a6ea42ead1e31524ec94cfefb6afc1d8dacd170";
|
|
sha256 = "1yh1kny28c7f5qm52y7xd5aj4mycksfb0x1zvcb37c73ycdxc1v2";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
latex-box = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "latex-box-2015-06-01";
|
|
src = fetchgit {
|
|
url = "https://github.com/latex-box-team/latex-box";
|
|
rev = "3c2901e12cb78bfb2be58ba4c62a488612550fe1";
|
|
sha256 = "1z4mdy47cpwcdhvy8mr72vhlybxn1y59yd3ixf6ids1bzpkrd7zl";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
typescript-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "typescript-vim-2017-03-15";
|
|
src = fetchgit {
|
|
url = "https://github.com/leafgarland/typescript-vim";
|
|
rev = "4dc79bd1b0c43c16cae146bee065f2acc6d2b789";
|
|
sha256 = "1hm7cpkx7na106xpivzi5cqb322nanpa0sdjmvnkhgll244q5vy4";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-jinja = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-jinja-2016-11-16";
|
|
src = fetchgit {
|
|
url = "https://github.com/lepture/vim-jinja";
|
|
rev = "8d330a7aaf0763d080dc82204b4aaba6ac0605c6";
|
|
sha256 = "1n62ga02rcj7jjgzvwr46pckj59dc1zqahjgampjcwdd8vf4mg3q";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vimtex-2017-05-21";
|
|
src = fetchgit {
|
|
url = "https://github.com/lervag/vimtex";
|
|
rev = "286036f92ef972f6e5adb1b9865a60d0bed8cf9c";
|
|
sha256 = "0a2bnnilvkicr67an4rrd1zxhgf497z12r1xfqd65c80j2g63ls2";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-easymotion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-easymotion-2017-04-27";
|
|
src = fetchgit {
|
|
url = "https://github.com/lokaltog/vim-easymotion";
|
|
rev = "d55e7bf515eab93e0b49f6f762bf5b0bf808264d";
|
|
sha256 = "1dqx8nrw8jcpdnnqmca6yl1y0fdlc64rz9msbsmvp502v98wvhnh";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-lawrencium = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-lawrencium-2017-01-10";
|
|
src = fetchgit {
|
|
url = "https://github.com/ludovicchabant/vim-lawrencium";
|
|
rev = "88077183e1f5a9a1f741aeab7a1374cfed9e917f";
|
|
sha256 = "0z31v93wjycq4lqvbl1jzxi7i5i1vl919m4dyyzphybcqrjjpnab";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
rainbow = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "rainbow-2017-04-21";
|
|
src = fetchgit {
|
|
url = "https://github.com/luochen1990/rainbow";
|
|
rev = "1c45e0f81324641b23d4c21edda4eabeacba031b";
|
|
sha256 = "143bkawg4sy1vbizfwb6p9alizyr80sr6incxrz179l9dp9r8frf";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-xkbswitch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-xkbswitch-2017-03-27";
|
|
src = fetchgit {
|
|
url = "https://github.com/lyokha/vim-xkbswitch";
|
|
rev = "a85ebddb9038e6b05138c48868a319a9e13d1868";
|
|
sha256 = "0v0wckkvsj3pd3a5lj35dqwlvgr1kfz0x6rpnx28mzrcg05p19fr";
|
|
};
|
|
dependencies = [];
|
|
patchPhase = ''
|
|
substituteInPlace plugin/xkbswitch.vim \
|
|
--replace /usr/local/lib/libxkbswitch.so ${xkb_switch}/lib/libxkbswitch.so
|
|
'';
|
|
buildInputs = [ xkb_switch ];
|
|
};
|
|
|
|
vim-highlightedyank = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-highlightedyank-2017-03-25";
|
|
src = fetchgit {
|
|
url = "https://github.com/machakann/vim-highlightedyank";
|
|
rev = "d656e1e62d2b4e1abd66c5f3a13a2be31a5a80ed";
|
|
sha256 = "0rcd2q8f49iyv93s5g95brml7sng7lr8k9s5m4mxq3y0m9yf68fd";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-startify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-startify-2017-05-07";
|
|
src = fetchgit {
|
|
url = "https://github.com/mhinz/vim-startify";
|
|
rev = "1e251fb749640b2f4e6ccb812fccf5ad3ab9fd27";
|
|
sha256 = "178v9sqfdh51zfdm3wd4njgfm6d99ics6fa5bvm1v7gnj44zjxbj";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-indent-object = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-indent-object-2017-03-23";
|
|
src = fetchgit {
|
|
url = "https://github.com/michaeljsmith/vim-indent-object";
|
|
rev = "41d700f14b3decccdde421fbfe49e95a084a2f89";
|
|
sha256 = "12mi4n5abfxx7xjl46aw400acgrjf1fxjgzak763l874y0whf5v2";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
lushtags = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "lushtags-2017-04-19";
|
|
src = fetchgit {
|
|
url = "https://github.com/mkasa/lushtags";
|
|
rev = "fd7fa5a0162d9aa159559880d5ba4731e180eeaf";
|
|
sha256 = "1si5n07k4r8kji4whglav9q59ksv6bi5v58xbpc2l5bavlk8kn6n";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
hlint-refactor-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "hlint-refactor-vim-2015-12-05";
|
|
src = fetchgit {
|
|
url = "https://github.com/mpickering/hlint-refactor-vim";
|
|
rev = "fffb044ecef854a82c5c2efda252e09044ba03e0";
|
|
sha256 = "0z8d31arfy9aidg1dwj5msnnx799d9r7njkgh51z695w6ayxn6p8";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-indent-guides = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-indent-guides-2016-04-17";
|
|
src = fetchgit {
|
|
url = "https://github.com/nathanaelkane/vim-indent-guides";
|
|
rev = "018298ead9d3aa9cd3b4ae222f81022a33978b09";
|
|
sha256 = "0zyrs9r3vza2kqhqir6qpkygy6yljpn877bvycspv89ljzczmwrs";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-stylish-haskell = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-stylish-haskell-2015-05-10";
|
|
src = fetchgit {
|
|
url = "https://github.com/nbouscal/vim-stylish-haskell";
|
|
rev = "c664376ba814de3f87cb7641f90b2c6a9dd53671";
|
|
sha256 = "1xm5ark2mwphznv3xsyzgcldnr52i5jzk1pfqdh0080j07aama8j";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
haskell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "haskell-vim-2017-04-03";
|
|
src = fetchgit {
|
|
url = "https://github.com/neovimhaskell/haskell-vim";
|
|
rev = "9811f3803317c4f39c868e71b3202b5559735aef";
|
|
sha256 = "02f87lfpr5lslh57cqimg91llflra8934jzy0g32l5zcm7fdljdk";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
cpsm = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "cpsm-2017-02-12";
|
|
src = fetchgit {
|
|
url = "https://github.com/nixprime/cpsm";
|
|
rev = "8e61bf3e30868c57ad7cf1fe4315b2352d61467c";
|
|
sha256 = "0qcc10dx48wyvcgz9q3nid9l1wxvl9m97608s289lj4zps8iqpcs";
|
|
};
|
|
dependencies = [];
|
|
buildInputs = [
|
|
python3
|
|
stdenv
|
|
cmake
|
|
boost
|
|
icu
|
|
];
|
|
buildPhase = ''
|
|
patchShebangs .
|
|
export PY3=ON
|
|
./install.sh
|
|
'';
|
|
};
|
|
|
|
shabadou-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "shabadou-vim-2016-07-19";
|
|
src = fetchgit {
|
|
url = "https://github.com/osyo-manga/shabadou.vim";
|
|
rev = "7d4bfed1ea8985ae125df3d1403cc19e252443e1";
|
|
sha256 = "1kvik1yf7yjg9jdmdw38yhkksxg0n3nry02banwik7wgjnpvg870";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-watchdogs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-watchdogs-2017-05-08";
|
|
src = fetchgit {
|
|
url = "https://github.com/osyo-manga/vim-watchdogs";
|
|
rev = "fcf1b1bacba95ac9739adb3851c3595136c96d0e";
|
|
sha256 = "11qldi4p34x8y974ajvv88pw2wjxsrlpx03n846nyhqridgpfsj9";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-markdown = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-markdown-2017-05-10";
|
|
src = fetchgit {
|
|
url = "https://github.com/plasticboy/vim-markdown";
|
|
rev = "3fcde7215e22913f004c2836fd46ff61746be6db";
|
|
sha256 = "0ymbs7235zi5hwyzc0vaikb3n6jwj6xarmgjj4lpf4wbsa1212yy";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
python-mode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "python-mode-2017-03-09";
|
|
src = fetchgit {
|
|
url = "https://github.com/python-mode/python-mode";
|
|
rev = "73620c44c4cd036a8133f77e2f56ca8995640cff";
|
|
sha256 = "0d2f8lcpjsrj3i21yinsncm9aigp024vi7mfy2hxhii7jcdmh8q5";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-racer-2017-05-20";
|
|
src = fetchgit {
|
|
url = "https://github.com/racer-rust/vim-racer";
|
|
rev = "92c3e2b57e60c3d4f0102d1d587ddc762e662f60";
|
|
sha256 = "0wf74ilkkqjm6s3r329i9w2jgnh5kd2jkswan3bvqc5g14a2ddhl";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
purescript-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "purescript-vim-2016-08-31";
|
|
src = fetchgit {
|
|
url = "https://github.com/raichoo/purescript-vim";
|
|
rev = "2c55bcefd63bc40ed2aa9d6ce9d89a590dfa3477";
|
|
sha256 = "1y96w8p865gd6zr29wpxn1qwsk833y06x1qp586gylgi0jp1ybzv";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-grammarous = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-grammarous-2017-05-07";
|
|
src = fetchgit {
|
|
url = "https://github.com/rhysd/vim-grammarous";
|
|
rev = "607fc41ebd8dcd1fb00eecde52a3c9e4fbab3c64";
|
|
sha256 = "0pv9747lkmhwxcdrhbnd28rh6rsslzrf9yqlznhjxqa6z9in81ca";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-puppet = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-puppet-2017-04-06";
|
|
src = fetchgit {
|
|
url = "https://github.com/rodjek/vim-puppet";
|
|
rev = "cce0312adcaa15c462aba89057565520c1928685";
|
|
sha256 = "1cmgmrn534ycw0jc1m8fsrw7qjis2529bvb1jiv5jqqdyff3bw2f";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
rust-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "rust-vim-2017-01-01";
|
|
src = fetchgit {
|
|
url = "https://github.com/rust-lang/rust.vim";
|
|
rev = "732b5fcb3652f81726d5f0f5b97c9027c01f057a";
|
|
sha256 = "0yrg0wlpc9nj5zf25vgr9zd1kwapds3f10njr0dw0wgxr7g204dz";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
neoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "neoformat-2017-05-14";
|
|
src = fetchgit {
|
|
url = "https://github.com/sbdchd/neoformat";
|
|
rev = "269e644661655d82765ae6c0259bbf084fa1f83b";
|
|
sha256 = "08r0hjz8dykn19rkprnh8jimj6g1p2pz0gqcj6bal84xk4qky2xb";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-polyglot = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-polyglot-2017-05-17";
|
|
src = fetchgit {
|
|
url = "https://github.com/sheerun/vim-polyglot";
|
|
rev = "d5b9c4ae84aaa98bdfbf15cba90eeafa5aded091";
|
|
sha256 = "17crapp8l2d77cpw6ac4a2y3q7ipi11in2jz2169m78y643gbz42";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
neco-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "neco-vim-2017-04-25";
|
|
src = fetchgit {
|
|
url = "https://github.com/shougo/neco-vim";
|
|
rev = "2329ad0a20af61ac104a29d3653e5af24add7077";
|
|
sha256 = "1mf7xdlarwj2kfx3pbngrvfrzmbjp6k5f6bxl4n1wz9p7wdajap8";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "neocomplete-vim-2017-04-30";
|
|
src = fetchgit {
|
|
url = "https://github.com/shougo/neocomplete.vim";
|
|
rev = "0dbc6e4594db2e7fdd4c71b93e67b51e26c9c258";
|
|
sha256 = "182hyi43sqy3y37vyjiapv2knz9n4f42x9dr4p10rmgpigp23axg";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "neosnippet-snippets-2017-03-29";
|
|
src = fetchgit {
|
|
url = "https://github.com/shougo/neosnippet-snippets";
|
|
rev = "2a9487bacb924d8e870612b6b0a2afb34deea0ae";
|
|
sha256 = "0917zlh7fin2172jmlbzkszb1dqafx6l0sgxf1nm1b0k083c9bjz";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "neosnippet-vim-2017-04-23";
|
|
src = fetchgit {
|
|
url = "https://github.com/shougo/neosnippet.vim";
|
|
rev = "9996520d6bf1aaee21f66b5eb561c9f0b306216c";
|
|
sha256 = "0j7z05br2cjdssdks3mac51xmr7js192gy30811nzjizwm2hhcwk";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "unite-vim-2017-05-17";
|
|
src = fetchgit {
|
|
url = "https://github.com/shougo/unite.vim";
|
|
rev = "e9650b32f3803aaa6ea2635137991c86782d63ac";
|
|
sha256 = "0k5xpp9kfyqbmcckb4l47qglmvcjsmmlhpcq2v543831z1ibcx6l";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vimproc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vimproc-vim-2016-08-06";
|
|
src = fetchgit {
|
|
url = "https://github.com/shougo/vimproc.vim";
|
|
rev = "25cb83f24edec4aec1e9f1329302235e7a7a7fe0";
|
|
sha256 = "19nl21623cv05j6ljyn35qm38pw3680nch2by1gapqmxazp99i20";
|
|
};
|
|
dependencies = [];
|
|
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
|
|
'';
|
|
};
|
|
|
|
vimshell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vimshell-vim-2016-12-14";
|
|
src = fetchgit {
|
|
url = "https://github.com/shougo/vimshell.vim";
|
|
rev = "d0c5bef010237855b4de25863bc54895effe5d7a";
|
|
sha256 = "13szswi1n04w66c4h701y47xblrba8ysxjwvmnfxb0pyd1x3gzgz";
|
|
};
|
|
dependencies = [ "vimproc-vim" ];
|
|
};
|
|
|
|
gundo-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "gundo-vim-2017-05-09";
|
|
src = fetchgit {
|
|
url = "https://github.com/sjl/gundo.vim";
|
|
rev = "46c443ee9d5854320eb965a1fdee781ba83a070e";
|
|
sha256 = "0adk7agzmbfv342zw6lc8jad6yjs1wap4c0ca98s0qm2bs0r1hl2";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
alchemist-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "alchemist-vim-2017-04-21";
|
|
src = fetchgit {
|
|
url = "https://github.com/slashmili/alchemist.vim";
|
|
rev = "12d9d8b9a8875d0edb75c3d91d4f8f04f3558fb7";
|
|
sha256 = "0xg1yixs8p4f2sghbh204p8b10m1zb3xxi4jwiqrrw4jhprh8g4f";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-hardtime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-hardtime-2017-03-31";
|
|
src = fetchgit {
|
|
url = "https://github.com/takac/vim-hardtime";
|
|
rev = "d9128568afa62947b7ac8f12c22d88e3de526a6b";
|
|
sha256 = "097wzfh4n4fnsq2gx4hbmyr731ciky8qcai5aiyh2baybvwshmr5";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-expand-region = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-expand-region-2013-08-19";
|
|
src = fetchgit {
|
|
url = "https://github.com/terryma/vim-expand-region";
|
|
rev = "966513543de0ddc2d673b5528a056269e7917276";
|
|
sha256 = "0l30wjlk4vxr16f1njnvf8aw9yg9p9jisvcxbcg3znsq5q8ix6zv";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vimpreviewpandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vimpreviewpandoc-2016-03-07";
|
|
src = fetchgit {
|
|
url = "https://github.com/tex/vimpreviewpandoc";
|
|
rev = "b109d41ad6478df5ec7f1311950c6efca66f36e4";
|
|
sha256 = "1gx326xarjs3qjygpkrknncad90crjqfx8v6pir4r7k1hl7dfxc4";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-quickrun-2017-03-21";
|
|
src = fetchgit {
|
|
url = "https://github.com/thinca/vim-quickrun";
|
|
rev = "98889e1fc0f7136262c4dd7c312b82879df16486";
|
|
sha256 = "1drv53fwp24z0yb79lj2nyapyndw1yirg202hg7px9jvxjr4k8a0";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
molokai = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "molokai-2015-11-11";
|
|
src = fetchgit {
|
|
url = "https://github.com/tomasr/molokai";
|
|
rev = "c67bdfcdb31415aa0ade7f8c003261700a885476";
|
|
sha256 = "1piszjr5kyw43ac1f0jh9z88g824xknshrkchbys9qxlz7pd831s";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-dispatch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-dispatch-2017-04-23";
|
|
src = fetchgit {
|
|
url = "https://github.com/tpope/vim-dispatch";
|
|
rev = "64ae8a26b9d8869aab9bef5b92602c8da541c7b7";
|
|
sha256 = "090qq295iwd8aaggffjysmc37xx9nad25da51dgdhm5jxqv469gp";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-eunuch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-eunuch-2017-03-08";
|
|
src = fetchgit {
|
|
url = "https://github.com/tpope/vim-eunuch";
|
|
rev = "dcd29a00eb708be211d856afd3fddfbff7bc6208";
|
|
sha256 = "1vq1qwhm27zmnp8xda1z27fhx835kni6ifcyix644shpd8mq8bi4";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-repeat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-repeat-2017-04-21";
|
|
src = fetchgit {
|
|
url = "https://github.com/tpope/vim-repeat";
|
|
rev = "070ee903245999b2b79f7386631ffd29ce9b8e9f";
|
|
sha256 = "1grsaaar2ng1049gc3r8wbbp5imp31z1lcg399vhh3k36y34q213";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-speeddating = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-speeddating-2015-01-24";
|
|
src = fetchgit {
|
|
url = "https://github.com/tpope/vim-speeddating";
|
|
rev = "426c792e479f6e1650a6996c683943a09344c21e";
|
|
sha256 = "1i8pndds1lk5afxl6nwsnl4vzszh0qxgqx7x11fp3vqw27c5bwn8";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
hasksyn = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "hasksyn-2014-09-03";
|
|
src = fetchgit {
|
|
url = "https://github.com/travitch/hasksyn";
|
|
rev = "c434040bf13a17ca20a551223021b3ace7e453b9";
|
|
sha256 = "09998lnfcshqis5m062wlag6y476imq9jday9gp4ayjjl1cp3cwx";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-haskellconceal = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-haskellconceal-2014-10-28";
|
|
src = fetchgit {
|
|
url = "https://github.com/twinside/vim-haskellconceal";
|
|
rev = "f73c5dd660b7009a050b131783d7c17b4954e4d9";
|
|
sha256 = "1a1v0m3qj0gian3mp5xynf2ghscr3xaid37b0wi38bb4f2qrigqy";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "youcompleteme-2017-05-19";
|
|
src = fetchgit {
|
|
url = "https://github.com/valloric/youcompleteme";
|
|
rev = "263bd88bd54278dba94c4d6c43ad5fcde2fcd3bb";
|
|
sha256 = "1gggbigv7h21di7vxvpk252djhjfhppvjd26dqyhk885d5ddm4m6";
|
|
};
|
|
dependencies = [];
|
|
buildPhase = ''
|
|
substituteInPlace plugin/youcompleteme.vim \
|
|
--replace "'ycm_path_to_python_interpreter', '''" \
|
|
"'ycm_path_to_python_interpreter', '${python}/bin/python'"
|
|
|
|
rm -r third_party/ycmd
|
|
ln -s ${ycmd}/lib/ycmd third_party
|
|
'';
|
|
|
|
meta = {
|
|
description = "Fastest non utf-8 aware word and C completion engine for Vim";
|
|
homepage = http://github.com/Valloric/YouCompleteMe;
|
|
license = stdenv.lib.licenses.gpl3;
|
|
maintainers = with stdenv.lib.maintainers; [marcweber jagajaga];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
};
|
|
|
|
vim-airline-themes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-airline-themes-2017-05-14";
|
|
src = fetchgit {
|
|
url = "https://github.com/vim-airline/vim-airline-themes";
|
|
rev = "3a39c85598aae19052aa0e2fe0512c8b228c0136";
|
|
sha256 = "04bm0civzhvwx059q8hcd4zvg2qzy6qpzq41b86li4hzly32m5yn";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-pandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-pandoc-2017-04-26";
|
|
src = fetchgit {
|
|
url = "https://github.com/vim-pandoc/vim-pandoc";
|
|
rev = "fc209c66e937172efdd6db39ee64fcb3980ce329";
|
|
sha256 = "19x8hf78833hcg508sn5a4g79h47ynqzzas998rqr2cmmpsc4mzs";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-pandoc-after = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-pandoc-after-2015-06-01";
|
|
src = fetchgit {
|
|
url = "https://github.com/vim-pandoc/vim-pandoc-after";
|
|
rev = "4377665e5c98f29ea838deb3b942200b8dd096ef";
|
|
sha256 = "1379g174pvsaw1wdv1n18gby84sv59rsamfcgq9bqd4kg54g6h3j";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-pandoc-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-pandoc-syntax-2017-04-13";
|
|
src = fetchgit {
|
|
url = "https://github.com/vim-pandoc/vim-pandoc-syntax";
|
|
rev = "56e8e41ef863a0a7d33d85c3c0c895aa6e9e62d3";
|
|
sha256 = "19ll4zrw5yd0frgsbi7pg9b68lmy4bfiwbnwgzii7inifrqsykfw";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
Colour-Sampler-Pack = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Colour-Sampler-Pack-2012-11-29";
|
|
src = fetchgit {
|
|
url = "https://github.com/vim-scripts/Colour-Sampler-Pack";
|
|
rev = "05cded87b2ef29aaa9e930230bb88e23abff4441";
|
|
sha256 = "03v2r18sfgs0xbgy9p56pxfdg0lsk6m7wyr5hw63wm1nzpwiipg3";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
Rename = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Rename-2011-08-30";
|
|
src = fetchgit {
|
|
url = "https://github.com/vim-scripts/Rename";
|
|
rev = "b240f28d2ede65fa77cd99fe045efe79202f7a34";
|
|
sha256 = "1d1myg4zyc281zcc1ba9idbgcgxndb4a0jwqr4yqxhhzdgszw46r";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
ReplaceWithRegister = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "ReplaceWithRegister-2014-10-30";
|
|
src = fetchgit {
|
|
url = "https://github.com/vim-scripts/ReplaceWithRegister";
|
|
rev = "832efc23111d19591d495dc72286de2fb0b09345";
|
|
sha256 = "0mb0sx85j1k59b1zz95r4vkq4kxlb4krhncq70mq7fxrs5bnhq8g";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
a-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "a-vim-2010-11-06";
|
|
src = fetchgit {
|
|
url = "https://github.com/vim-scripts/a.vim";
|
|
rev = "2cbe946206ec622d9d8cf2c99317f204c4d41885";
|
|
sha256 = "0h62v9z5bh9xmaq22pqdb3z79i84a5rknqm68mjpy7nq7s3q42fa";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "align-2012-08-07";
|
|
src = fetchgit {
|
|
url = "https://github.com/vim-scripts/align";
|
|
rev = "787662fe90cd057942bc5b682fd70c87e1a9dd77";
|
|
sha256 = "0acacr572kfh7jvavbw61q5pkwrpi1albgancma063rpax1pddgp";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
argtextobj-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "argtextobj-vim-2010-10-17";
|
|
src = fetchgit {
|
|
url = "https://github.com/vim-scripts/argtextobj.vim";
|
|
rev = "f3fbe427f7b4ec436416a5816d714dc917dc530b";
|
|
sha256 = "1l4jh5hdmky1qj5z26jpnk49a6djjcvzyyr6pknrrgb8rzkiln48";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
changeColorScheme-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "changeColorScheme-vim-2010-10-17";
|
|
src = fetchgit {
|
|
url = "https://github.com/vim-scripts/changeColorScheme.vim";
|
|
rev = "b041d49f828629d72f2232531a230d1ec5de2405";
|
|
sha256 = "0pybhsg9k9252d4ifdc4gsar8lkmfzbvs6xkzqq1m6f35l9wqk09";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
random-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "random-vim-2010-10-17";
|
|
src = fetchgit {
|
|
url = "https://github.com/vim-scripts/random.vim";
|
|
rev = "b2d85eb24a38074eab37a5acf2a295e1f2ad8989";
|
|
sha256 = "1lzy2cq4jcrsqyxlnbnd0y6j4mabm09bi7q22lf6vinqlb84w7sp";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
tabmerge = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "tabmerge-2010-10-17";
|
|
src = fetchgit {
|
|
url = "https://github.com/vim-scripts/tabmerge";
|
|
rev = "074e5f06f26e7108a0570071a0f938a821768c06";
|
|
sha256 = "0prkyza1n49cdaslcr57w8zv15vw78mlqbzib2xipmawzjq02idq";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
wombat256-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "wombat256-vim-2010-10-17";
|
|
src = fetchgit {
|
|
url = "https://github.com/vim-scripts/wombat256.vim";
|
|
rev = "8734ba45dcf5e38c4d2686b35c94f9fcb30427e2";
|
|
sha256 = "01fdvfwdfqn5xi88lfanb4lb6jmn1ma6wq6d9jj2x7qamdbpvsrg";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-wakatime-2017-05-18";
|
|
src = fetchgit {
|
|
url = "https://github.com/wakatime/vim-wakatime";
|
|
rev = "00443e2b580314b0cdb2bc2be746c44e75030074";
|
|
sha256 = "0af34wc0fqhn1pb4dcm6ba5gnav7kg3wfchlciymv6pb8zvaqvfb";
|
|
};
|
|
dependencies = [];
|
|
buildInputs = [ python ];
|
|
};
|
|
|
|
command-t = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "command-t-2017-03-02";
|
|
src = fetchgit {
|
|
url = "https://github.com/wincent/command-t";
|
|
rev = "5a19460ea0eab0ca617a8dbf405f7a506eca4ff6";
|
|
sha256 = "0vzw5cvlsw0cs2jp52qbc7nghw4jsbldrbkynbx8g7nrh36847my";
|
|
};
|
|
dependencies = [];
|
|
buildInputs = [ perl ruby ];
|
|
buildPhase = ''
|
|
pushd ruby/command-t
|
|
ruby extconf.rb
|
|
make
|
|
popd
|
|
'';
|
|
};
|
|
|
|
vim-easytags = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-easytags-2015-07-01";
|
|
src = fetchgit {
|
|
url = "https://github.com/xolox/vim-easytags";
|
|
rev = "72a8753b5d0a951e547c51b13633f680a95b5483";
|
|
sha256 = "0i8ha1fa5d860b1mi0xp8kwsgb0b9vbzcg1bldzv6s5xd9yyi12i";
|
|
};
|
|
dependencies = ["vim-misc"];
|
|
|
|
};
|
|
|
|
vim-misc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-misc-2015-05-21";
|
|
src = fetchgit {
|
|
url = "https://github.com/xolox/vim-misc";
|
|
rev = "3e6b8fb6f03f13434543ce1f5d24f6a5d3f34f0b";
|
|
sha256 = "0rd9788dyfc58py50xbiaz5j7nphyvf3rpp3yal7yq2dhf0awwfi";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
deoplete-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "deoplete-go-2017-03-21";
|
|
src = fetchgit {
|
|
url = "https://github.com/zchee/deoplete-go";
|
|
rev = "7990da5c8c89a47e0ccd3b7e60a836a6f115641a";
|
|
sha256 = "0ybd9sg4x8pczvl0hz5azzs2sn4nyc7la9890xh373dv3lyb6gk7";
|
|
};
|
|
dependencies = [];
|
|
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/ \;
|
|
'';
|
|
};
|
|
|
|
deoplete-jedi = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "deoplete-jedi-2017-04-26";
|
|
src = fetchgit {
|
|
url = "https://github.com/zchee/deoplete-jedi";
|
|
rev = "58354e749d81a55cc7e591beb4b4628b5e3cbd9e";
|
|
sha256 = "1j5vp6yspnjqnrrfqvhz0xwhc4v1z73y0170nxpxw7xlb80bi05m";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
goyo = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "goyo-2017-04-02";
|
|
src = fetchgit {
|
|
url = "git://github.com/junegunn/goyo.vim";
|
|
rev = "64e750f726d8758c493931938a17c50f75e6f823";
|
|
sha256 = "0g1kark21kljrk7i0ig8gfdh5kva8vj80cvi4jbph4rmrbxwjc7x";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
gruvbox = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "gruvbox-2016-09-28";
|
|
src = fetchgit {
|
|
url = "git://github.com/morhetz/gruvbox";
|
|
rev = "127c9d14d4bac1bac31e328b835a8919a255789c";
|
|
sha256 = "19wg9143wvlynblpxm0cnk3ars2hgss3y745hligqgvfy308f7sm";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
matchit-zip = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "matchit-zip";
|
|
src = fetchurl {
|
|
url = "http://www.vim.org/scripts/download_script.php?src_id=8196";
|
|
name = "matchit.zip";
|
|
sha256 = "1bbm8j1bhb70kagwdimwy9vcvlrz9ax5bk2a7wrmn4cy87f9xj4l";
|
|
};
|
|
buildInputs = [ unzip ];
|
|
dependencies = [];
|
|
meta = {
|
|
url = "http://www.vim.org/scripts/script.php?script_id=39";
|
|
};
|
|
|
|
unpackPhase = ''
|
|
(
|
|
sourceRoot=d
|
|
mkdir $sourceRoot; cd $sourceRoot;
|
|
unzip $src
|
|
)
|
|
'';
|
|
};
|
|
|
|
pathogen = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "pathogen-2017-05-03";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-pathogen";
|
|
rev = "0f4710063ecc98d77dc03698c4a917a3215bdf09";
|
|
sha256 = "1fk9fgprz9nhgz9hk5zjzw5m0sz40fgh74jg19wyp3yrwryhy5dp";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
quickfixstatus = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "quickfixstatus-2011-09-02";
|
|
src = fetchgit {
|
|
url = "git://github.com/dannyob/quickfixstatus";
|
|
rev = "fd3875b914fc51bbefefa8c4995588c088163053";
|
|
sha256 = "16vxhvyxq51y7wnx0c1fmdi2yb6kfr1pxijq65gxj8qwvbak2s3v";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
rainbow_parentheses = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "rainbow_parentheses-2013-03-04";
|
|
src = fetchgit {
|
|
url = "git://github.com/kien/rainbow_parentheses.vim";
|
|
rev = "eb8baa5428bde10ecc1cb14eed1d6e16f5f24695";
|
|
sha256 = "1qw84imlhq4654mxazj7j3sp5g1j3yjxi496i08iix06dm15m5s7";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
sensible = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "sensible-2017-05-09";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-sensible";
|
|
rev = "49ee364222dc2a5a00dddf89fd61880e3e39d46a";
|
|
sha256 = "0x9zn547hzzxjzplr2rkzhydh2y0a4fdkrwmdvw2yp203msyhcjx";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
sleuth = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "sleuth-2017-05-04";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-sleuth";
|
|
rev = "0ffa819630678e442fc695c51a75ced640c8a95f";
|
|
sha256 = "0izyaggk6qx8k1297ki6fan4534hvnnk95hhqy8jngshrq1a46w0";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
snipmate = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "snipmate-2017-04-20";
|
|
src = fetchgit {
|
|
url = "git://github.com/garbas/vim-snipmate";
|
|
rev = "a9802f2351910f64b70fb10b63651e6ff6b8125e";
|
|
sha256 = "1l7sc6lf66pkiy18aq9s3wk1dmvvvsy1063cc0bxich9xa8m34bj";
|
|
};
|
|
dependencies = ["vim-addon-mw-utils" "tlib"];
|
|
|
|
};
|
|
|
|
sourcemap = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "sourcemap-2012-09-19";
|
|
src = fetchgit {
|
|
url = "git://github.com/chikatoike/sourcemap.vim";
|
|
rev = "0dd82d40faea2fdb0771067f46c01deb41610ba1";
|
|
sha256 = "1gcgnynallz420911fdfm0ccbv3zs78p69nnh2ls1r4vlfp7g350";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
surround = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "surround-2016-06-01";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-surround";
|
|
rev = "e49d6c2459e0f5569ff2d533b4df995dd7f98313";
|
|
sha256 = "1v0q2f1n8ngbja3wpjvqp2jh89pb5ij731qmm18k41nhgz6hhm46";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
table-mode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "table-mode-2017-04-20";
|
|
src = fetchgit {
|
|
url = "git://github.com/dhruvasagar/vim-table-mode";
|
|
rev = "4e41af8e5f0bf53326d1b83c2feb1eff89fe90d4";
|
|
sha256 = "0l83j3963lzkmn54vcagkwm2rhk96cl9v42l5r7zcgjign28cfzw";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
taglist = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "taglist";
|
|
src = fetchurl {
|
|
url = "http://www.vim.org/scripts/download_script.php?src_id=19574";
|
|
name = "taglist_46.zip";
|
|
sha256 = "18cbv462vwg7vip2p99qlahm99hswav96cj4ki227kyi05q2lkjj";
|
|
};
|
|
buildInputs = [ unzip ];
|
|
dependencies = [];
|
|
meta = {
|
|
url = "http://www.vim.org/scripts/script.php?script_id=273";
|
|
};
|
|
|
|
setSourceRoot = ''
|
|
export sourceRoot=taglist
|
|
mkdir taglist
|
|
mv doc taglist
|
|
mv plugin taglist
|
|
'';
|
|
};
|
|
|
|
tlib = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "tlib-2017-05-20";
|
|
src = fetchgit {
|
|
url = "git://github.com/tomtom/tlib_vim";
|
|
rev = "6f9d75b54478bcaab722d33cbec69d8a1fe49f32";
|
|
sha256 = "1mh2m3c9xi7g650s06qxfpz57g493n0qjq35inad9y62yb1gsidm";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "undotree-2017-03-24";
|
|
src = fetchgit {
|
|
url = "git://github.com/mbbill/undotree";
|
|
rev = "ad08a88df70c1865b8c9ef6eeac5cdb051d2a18a";
|
|
sha256 = "1i1sss8vzsym44amq19rfy95wm7143ks5h9imm7z7rah7xkcqv9l";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-addon-actions = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-actions-2014-09-22";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-actions";
|
|
rev = "a5d20500fb8812958540cf17862bd73e7af64936";
|
|
sha256 = "1wfkwr89sn2w97i94d0dqylcg9mr6pirjadi0a4l492nfnsh99bc";
|
|
};
|
|
dependencies = ["vim-addon-mw-utils" "tlib"];
|
|
|
|
};
|
|
|
|
vim-addon-async = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-async-2017-03-20";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-async";
|
|
rev = "eca316a4480f68c2cb62128f3187dc7b2002afde";
|
|
sha256 = "1lk8ma51dd0syi73vq5r4qk9cpy6cq3llizvh94hmxblfjpvrs7q";
|
|
};
|
|
dependencies = ["vim-addon-signs"];
|
|
|
|
};
|
|
|
|
vim-addon-background-cmd = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-background-cmd-2015-12-11";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-background-cmd";
|
|
rev = "abf2abf339652d2bc79da81f9d131edfe2755f5a";
|
|
sha256 = "0csy68x686l3x5ancidxb5b6prg9k7ikybqzq3klx0gs5rmksfy4";
|
|
};
|
|
dependencies = ["vim-addon-mw-utils"];
|
|
|
|
};
|
|
|
|
vim-addon-commenting = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-commenting-2013-06-10";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-commenting";
|
|
rev = "b7cf748ac1c9bf555cbd347589e3b7196030d20b";
|
|
sha256 = "0alak8h33vada2ckb0v06y82qlib5mhyc2yswlv1rqh8ypzhq3mc";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-addon-completion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-completion-2015-02-10";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-completion";
|
|
rev = "021c449a5ce1ce4ac0af5955e05b0279c1cc0e75";
|
|
sha256 = "1ld059y2qwlc5bdfjm2p314s1qh31lxs54g944pw49r46s5nlslr";
|
|
};
|
|
dependencies = ["tlib"];
|
|
|
|
};
|
|
|
|
vim-addon-errorformats = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-errorformats-2014-11-05";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-errorformats";
|
|
rev = "dcbb203ad5f56e47e75fdee35bc92e2ba69e1d28";
|
|
sha256 = "159zqm69fxbxcv3b2y99g57bf20qrzsijcvb5rzy2njxah3049m1";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-addon-goto-thing-at-cursor = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-goto-thing-at-cursor-2012-01-11";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-goto-thing-at-cursor";
|
|
rev = "f052e094bdb351829bf72ae3435af9042e09a6e4";
|
|
sha256 = "1ksm2b0j80zn8sz2y227bpcx4jsv76lwgr2gpgy2drlyqhn2vlv0";
|
|
};
|
|
dependencies = ["tlib"];
|
|
|
|
};
|
|
|
|
vim-addon-local-vimrc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-local-vimrc-2015-03-19";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-local-vimrc";
|
|
rev = "6a27f95b35befa70cd0d049329cd0920566c764b";
|
|
sha256 = "0n8lwl1gyak149p7jpgm0qbmfj8hcg8hirx3dxdhizw0yc47ws7h";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-addon-manager = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-manager-2017-05-07";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-manager";
|
|
rev = "2434225ae48e608c2b6ac86c8da1c62209da746f";
|
|
sha256 = "1fczkd05gir994614qmgscx131isr71bn0rwa6n3vgdbnhasz6bb";
|
|
};
|
|
dependencies = [];
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin Cocoa;
|
|
};
|
|
|
|
vim-addon-mru = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-mru-2013-08-08";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-mru";
|
|
rev = "e41e39bd9d1bf78ccfd8d5e1bc05ae5e1026c2bb";
|
|
sha256 = "0q6rxr9nrp63kidr3m3c2z5sda4g813pzshg0scxkjr8dxwhzdqm";
|
|
};
|
|
dependencies = ["vim-addon-other" "vim-addon-mw-utils"];
|
|
|
|
};
|
|
|
|
vim-addon-mw-utils = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-mw-utils-2012-11-05";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-mw-utils";
|
|
rev = "0c5612fa31ee434ba055e21c76f456244b3b5109";
|
|
sha256 = "147s1k4n45d3x281vj35l26sv4waxjlpqdn83z3k9n51556h1d45";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-addon-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-nix-2015-03-10";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-nix";
|
|
rev = "2aed79ba5d8c5e6abd102de77e55e242f61b17f1";
|
|
sha256 = "0zx1q9994py6jmm0qbbx6fc1dy5la8zfskkbvqqxssxrl5dx7vvi";
|
|
};
|
|
dependencies = ["vim-addon-completion" "vim-addon-goto-thing-at-cursor" "vim-addon-errorformats" "vim-addon-actions" "vim-addon-mw-utils" "tlib"];
|
|
|
|
};
|
|
|
|
vim-addon-other = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-other-2014-07-15";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-other";
|
|
rev = "f78720c9cb5bf871cabb13c7cbf94378dbf0163b";
|
|
sha256 = "0cjz7mlyfkkncas4ss7rwxb0q38ls1qw1p15hac1imscscsvyjc6";
|
|
};
|
|
dependencies = ["vim-addon-actions" "vim-addon-mw-utils"];
|
|
|
|
};
|
|
|
|
vim-addon-php-manual = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-php-manual-2015-01-01";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-php-manual";
|
|
rev = "5f9810dd1f6e9f36a45f637ae6260ccff09256ff";
|
|
sha256 = "1kc67f12wccqdza069b75lpcbqp4kv4r23i4mfz0ihwif5mfnhir";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-addon-signs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-signs-2013-04-19";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-signs";
|
|
rev = "17a49f293d18174ff09d1bfff5ba86e8eee8e8ae";
|
|
sha256 = "0i4gfp30hmw1vqjl6zxjrgkca3ikdkcnjmma2mncjmcr6f59kjzy";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-addon-sql = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-sql-2017-02-11";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-sql";
|
|
rev = "048a139af36829fce670c8ff80d3aad927557ee6";
|
|
sha256 = "0ihm157sby6csdwsnw2gwh3jmm3prm1mxwgkx2hsfwlmpb1vwwm3";
|
|
};
|
|
dependencies = ["vim-addon-completion" "vim-addon-background-cmd" "tlib"];
|
|
|
|
};
|
|
|
|
vim-addon-syntax-checker = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-syntax-checker-2013-07-12";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-syntax-checker";
|
|
rev = "8eb7217e636ca717d4de5cd03cc0180c5b66ae77";
|
|
sha256 = "0gcvb922w4jsi203ygbnij9xhmgc6knj9b3ivw3m0fv5ckk4iw5f";
|
|
};
|
|
dependencies = ["vim-addon-mw-utils" "tlib"];
|
|
|
|
};
|
|
|
|
vim-addon-toggle-buffer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-toggle-buffer-2012-01-13";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-toggle-buffer";
|
|
rev = "a1b38b9c5709cba666ed2d84ef06548f675c6b0b";
|
|
sha256 = "1xq38kfdm36c34ln66znw841q797w5gm8bpq1x64bsf2h6n3ml03";
|
|
};
|
|
dependencies = ["vim-addon-mw-utils" "tlib"];
|
|
|
|
};
|
|
|
|
vim-addon-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-xdebug-2014-08-29";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-xdebug";
|
|
rev = "45f26407305b4ce6f8f5f37d2b5e6e4354104172";
|
|
sha256 = "1i64ppdfp2qqq7vw1jf160mj4ikc04v39iazdab83xmiqjsh8ixw";
|
|
};
|
|
dependencies = ["WebAPI" "vim-addon-mw-utils" "vim-addon-signs" "vim-addon-async"];
|
|
|
|
};
|
|
|
|
vim-airline = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-airline-2017-05-08";
|
|
src = fetchgit {
|
|
url = "git://github.com/vim-airline/vim-airline";
|
|
rev = "466198adc015a9d81e975374d8e206dcf3efd173";
|
|
sha256 = "1dq47y24dc84dkpgv44jh5n2q5jqm5xvriql81441lbwldyq99ld";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-coffee-script-2017-03-03";
|
|
src = fetchgit {
|
|
url = "git://github.com/kchmck/vim-coffee-script";
|
|
rev = "aace5c23d812a205c93e87ff79df72d9366928df";
|
|
sha256 = "1saz5m3c329m2vk8ffhvxw4virz70k2qrjncwhvjpkik27jf75yy";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-easy-align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-easy-align-2017-02-08";
|
|
src = fetchgit {
|
|
url = "git://github.com/junegunn/vim-easy-align";
|
|
rev = "3b395bd5bafbdfb1f93190fa3f259b7ad2e40eb9";
|
|
sha256 = "0nqvzxr2i9jsyx1qhspf636q0j4b0d8y98yqhxklcpq18ap442zp";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-gista = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-gista-2017-02-20";
|
|
src = fetchgit {
|
|
url = "git://github.com/lambdalisue/vim-gista";
|
|
rev = "b6cd41d0eb480cd79e84f3da3703613d0cf94a6c";
|
|
sha256 = "0bkzbppd3jdci4yvifb4sh05q20qn8cr3j9kqhxyc703s0l0lk2s";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-gitgutter-2017-04-28";
|
|
src = fetchgit {
|
|
url = "git://github.com/airblade/vim-gitgutter";
|
|
rev = "b803a28f47b26d16f5fe9e747850992c9985c667";
|
|
sha256 = "024sw99h3s9p3xsg9ih8p4v6m0hkahgl4jgq2jxyd62sc1nhpwbh";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-iced-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-iced-coffee-script-2013-12-27";
|
|
src = fetchgit {
|
|
url = "git://github.com/noc7c9/vim-iced-coffee-script";
|
|
rev = "e42e0775fa4b1f8840c55cd36ac3d1cedbc1dea2";
|
|
sha256 = "14yfirny359rlrr082il2ys3hxiyrbbk794rdxrs2lasjy8rb1f7";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-latex-live-preview = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-latex-live-preview-2016-03-16";
|
|
src = fetchgit {
|
|
url = "git://github.com/xuhdev/vim-latex-live-preview";
|
|
rev = "99501642c1dd3f703ac6301ae13469f4990b7a06";
|
|
sha256 = "0dkm3v1jqi8aq0jfpa6fdwgbfbwidc32ci1y9vhqb1prs15qrqfl";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-multiple-cursors = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-multiple-cursors-2017-04-29";
|
|
src = fetchgit {
|
|
url = "git://github.com/terryma/vim-multiple-cursors";
|
|
rev = "92d0b8dc446e91984cc4a9722b767f5a28504d47";
|
|
sha256 = "1a291sswkxv608rfsdpkv6l1b4vqc487jhzwcvgvjbf9x2w0simb";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-signature = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-signature-2016-11-20";
|
|
src = fetchgit {
|
|
url = "git://github.com/kshenoy/vim-signature";
|
|
rev = "7e13913188809c45e14988270213744d1c3bb485";
|
|
sha256 = "0lcmv8fxj50r1r51379sxdy0ra3s0i1cgyqi4wp2zmpz06c1c2nx";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-signify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-signify-2017-04-21";
|
|
src = fetchgit {
|
|
url = "git://github.com/mhinz/vim-signify";
|
|
rev = "6e8c4b190078030f9cb979ce26274a79c0ac313c";
|
|
sha256 = "1wch8pas15z5afw71i814z4cxl8l411kdizhwljx69ghvbwkmkpg";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-snippets-2017-05-19";
|
|
src = fetchgit {
|
|
url = "git://github.com/honza/vim-snippets";
|
|
rev = "3cb0d29cf55d3d93e0a330819770b4f60e66e39f";
|
|
sha256 = "112747rfikyixv9m3nfdnwm31bv9v0x4s7fp0j8zkvg9sbcf15nf";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-webdevicons = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-webdevicons-2017-05-07";
|
|
src = fetchgit {
|
|
url = "git://github.com/ryanoasis/vim-devicons";
|
|
rev = "4a77915b43120e8fade8f40f961a96831a5732bd";
|
|
sha256 = "02svpilb8vqvd5a8lfbb4ppwaicibb9hcjcq8415vi6dipmj1s7x";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim2hs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim2hs-2014-04-16";
|
|
src = fetchgit {
|
|
url = "git://github.com/dag/vim2hs";
|
|
rev = "f2afd55704bfe0a2d66e6b270d247e9b8a7b1664";
|
|
sha256 = "18lqrl3hqb6cmizc04bbnsh8j0g761w2q8wascbzzfw80dmxy36b";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vimwiki = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vimwiki-2017-04-15";
|
|
src = fetchgit {
|
|
url = "git://github.com/vimwiki/vimwiki";
|
|
rev = "8cdc1c15388cc7f4edb827ff15dbc31d592a79af";
|
|
sha256 = "0hzmssyz7y7hv3mv67zkqwxc13crkpwv0plm7z701943h2zxj08h";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vinegar = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vinegar-2017-05-10";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-vinegar";
|
|
rev = "1ed01e2135b0b8158ba289e03c54f63dad9865be";
|
|
sha256 = "128sdiaxdvjxz67iy0sgaqi54r8sfd5881m1mrp58wc1zgafgfb5";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vundle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vundle-2017-04-02";
|
|
src = fetchgit {
|
|
url = "git://github.com/gmarik/vundle";
|
|
rev = "6497e37694cd2134ccc3e2526818447ee8f20f92";
|
|
sha256 = "0mphybh0mwh5km2q0awmn8hdgvq3g45yyqpjird7kxybri6aw0kn";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
}
|