1# TODO check that no license information gets lost
2{ fetchurl, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip
3, which, fetchgit, llvmPackages, rustPlatform
4, xkb_switch, rustracerd, fzf, skim
5, python3, boost, icu, ncurses
6, ycmd, makeWrapper, rake
7, pythonPackages, python3Packages
8, substituteAll
9, languagetool
10, Cocoa ? null, git
11}:
12
13let
14
15 _skim = skim;
16
17inherit (vimUtils.override {inherit vim;}) rtpPath addRtp buildVimPlugin
18 buildVimPluginFrom2Nix vimHelpTags;
19in
20
21# TL;DR
22# Add your plugin to ./vim-plugin-names
23# Regenerate via `nix-shell -I nixpkgs=/path/to/your/local/fork -p vimPlugins.pluginnames2nix --command "vim-plugin-names-to-nix </dev/null"`
24# Copy the generated expression(s) into this file.
25# If plugin is complicated then make changes to ./vim2nix/additional-nix-code
26
27# This attrs contains two sections:
28# The first contains plugins added manually, the second contains plugins
29# generated by call nix#ExportPluginsForNix.
30# Documentation & usage see vim-utils.nix.
31# attribute names should be the same as used by vim-pi to make dependency
32# resolution work
33rec {
34 # This is not a plugin, it provides bin/vim-open-buffer-with-plugins-derivations
35 # which recreates this the following derivations based on ./vim-plugin-names
36 pluginnames2nix = vimUtils.pluginnames2Nix {
37 name = "vim-plugin-names-to-nix";
38 namefiles = [./vim-plugin-names];
39 };
40
41 # Section I
42 vim-addon-vim2nix = vim2nix;
43
44 vim2nix = buildVimPluginFrom2Nix { # use it to update plugins
45 name = "vim2nix";
46 src = ./vim2nix;
47 dependencies = ["vim-addon-manager"];
48 };
49
50
51 # Section II
52 # Update with vimUtils.vimPlugins.pluginnames2Nix command
53
54 # aliasess
55 "sourcemap.vim" = sourcemap;
56 Colour_Sampler_Pack = Colour-Sampler-Pack;
57 Gundo = gundo-vim; # backwards compat, added 2015-10-03
58 YouCompleteMe = youcompleteme;
59 airline = vim-airline;
60 alternative = a-vim; # backwards compat, added 2014-10-21
61 bats = bats-vim;
62 calendar = calendar-vim;
63 coffee-script = vim-coffee-script;
64 coffeeScript = coffee-script; # backwards compat, added 2014-10-18
65 colors-solarized = Solarized;
66 colorsamplerpack = Colour_Sampler_Pack;
67 command_T = command-t; # backwards compat, added 2014-10-18
68 committia = committia-vim-git;
69 concealedyank = concealedyank-vim;
70 context-filetype = context_filetype-vim;
71 css_color_5056 = vim-css-color;
72 ctrlp = ctrlp-vim;
73 cute-python = vim-cute-python-git;
74 denite = denite-nvim;
75 easy-align = vim-easy-align;
76 easymotion = vim-easymotion;
77 echodoc = echodoc-vim;
78 eighties = vim-eighties;
79 ghc-mod-vim = ghcmod;
80 gist-vim = Gist;
81 gitgutter = vim-gitgutter;
82 gundo = gundo-vim;
83 haskellConceal = haskellconceal; # backwards compat, added 2014-10-18
84 haskellConcealPlus = vim-haskellConcealPlus;
85 haskellconceal = vim-haskellconceal;
86 hier = vim-hier;
87 hlint-refactor = hlint-refactor-vim;
88 hoogle = Hoogle;
89 ipython = vim-ipython;
90 latex-live-preview = vim-latex-live-preview;
91 mayansmoke = mayansmoke-git;
92 multiple-cursors = vim-multiple-cursors;
93 necoGhc = neco-ghc; # backwards compat, added 2014-10-18
94 neocomplete = neocomplete-vim;
95 neoinclude = neoinclude-vim;
96 neomru = neomru-vim;
97 neosnippet = neosnippet-vim;
98 neoyank = neoyank-vim-git;
99 nerdcommenter = The_NERD_Commenter;
100 nerdtree = The_NERD_tree;
101 open-browser = open-browser-vim;
102 peskcolor = peskcolor-vim-git;
103 polyglot = vim-polyglot;
104 quickrun = vim-quickrun;
105 repeat = vim-repeat;
106 rhubarb = vim-rhubarb;
107 signature = vim-signature;
108 stylish-haskell = vim-stylish-haskell;
109 stylishHaskell = stylish-haskell; # backwards compat, added 2014-10-18
110 supertab = Supertab;
111 syntastic = Syntastic;
112 tabpagebuffer = tabpagebuffer-vim;
113 tabular = Tabular;
114 tagbar = Tagbar;
115 thumbnail = thumbnail-vim;
116 tmux-navigator = vim-tmux-navigator;
117 tmuxNavigator = tmux-navigator; # backwards compat, added 2014-10-18
118 tslime = tslime-vim;
119 unite = unite-vim;
120 vim-grepper = vim-grepper-git;
121 vim-test = vim-test-git;
122 vimproc = vimproc-vim;
123 vimshell = vimshell-vim;
124 watchdogs = vim-watchdogs;
125 webapi-vim = WebAPI;
126 wombat256 = wombat256-vim; # backwards compat, added 2015-7-8
127 yankring = YankRing;
128
129 # do not auto-update this one, as the name clashes with vim-snippets
130 vim-docbk-snippets = buildVimPluginFrom2Nix {
131 name = "vim-docbk-snippets-2017-11-02";
132 src = fetchgit {
133 url = "https://github.com/jhradilek/vim-snippets";
134 rev = "69cce66defdf131958f152ea7a7b26c21ca9d009";
135 sha256 = "1363b2fmv69axrl2hm74dmx51cqd8k7rk116890qllnapzw1zjgc";
136 };
137 dependencies = [];
138 };
139
140 fzfWrapper = buildVimPluginFrom2Nix {
141 name = fzf.name;
142 src = fzf.src;
143 dependencies = [];
144 };
145
146 skim = buildVimPluginFrom2Nix {
147 name = _skim.name;
148 src = _skim.vim;
149 dependencies = [];
150 };
151
152 LanguageClient-neovim = let
153 LanguageClient-neovim-src = fetchgit {
154 url = "https://github.com/autozimu/LanguageClient-neovim";
155 rev = "fbc46862af7fa254f74f1108149fd0669c46f1ad";
156 sha256 = "1wrrmikriyw8an8hn7240igcaca9a0ykh1j0dfy45kslxkmqkk3r";
157 };
158 LanguageClient-neovim-bin = rustPlatform.buildRustPackage {
159 name = "LanguageClient-neovim-bin";
160 src = LanguageClient-neovim-src;
161
162 cargoSha256 = "0c2sklpvab63a1f1mhcq9abq5m2srkj52ypq7dq44g8ngn2a05ka";
163 };
164 in buildVimPluginFrom2Nix {
165 name = "LanguageClient-neovim-2018-03-06";
166 src = LanguageClient-neovim-src;
167
168 dependencies = [];
169 propogatedBuildInputs = [ LanguageClient-neovim-bin ];
170
171 preFixup = ''
172 substituteInPlace "$out"/share/vim-plugins/LanguageClient-neovim/plugin/LanguageClient.vim \
173 --replace "let l:command = [s:root . '/bin/languageclient']" "let l:command = ['${LanguageClient-neovim-bin}/bin/languageclient']"
174 '';
175 };
176
177 # --- generated packages bellow this line ---
178
179 CSApprox = buildVimPluginFrom2Nix { # created by nix#NixDerivation
180 name = "CSApprox-2013-07-26";
181 src = fetchgit {
182 url = "git://github.com/godlygeek/csapprox";
183 rev = "7981dac51d8b6776985aa08cb7b5ee98ea7f2ddd";
184 sha256 = "08g4x6nnd6hkgm2daa5ihhz75pcdx3jzzv8rfjls80qajlhx5rf6";
185 };
186 dependencies = [];
187
188 };
189
190 CheckAttach = buildVimPluginFrom2Nix { # created by nix#NixDerivation
191 name = "CheckAttach-2017-03-15";
192 src = fetchgit {
193 url = "git://github.com/chrisbra/CheckAttach";
194 rev = "b583efd45e03902438a55299623390a0f9253513";
195 sha256 = "0j1nx8ryrlixisd8z2d24k1xk2yrqk4i0ar8m4vq3jlr74309a34";
196 };
197 dependencies = [];
198
199 };
200
201 Cosco = buildVimPluginFrom2Nix { # created by nix#NixDerivation
202 name = "Cosco-2018-02-15";
203 src = fetchgit {
204 url = "git://github.com/lfilho/cosco.vim";
205 rev = "434dc68b93b8f42babe1887a269145ce39c97edf";
206 sha256 = "1ng91nkkd9rgyihp4dvzrj7drm31d9r2vx4id1n8v6gc1rx3qasv";
207 };
208 dependencies = [];
209
210 };
211
212 Gist = buildVimPluginFrom2Nix { # created by nix#NixDerivation
213 name = "Gist-2016-10-10";
214 src = fetchgit {
215 url = "git://github.com/mattn/gist-vim";
216 rev = "f0d63579eab7548cf12f979dc52ef5a370ecbe63";
217 sha256 = "06nix49j4inxy3rkcv32f4ka89g4crqwfqnrm3b76iwwky8m2p17";
218 };
219 dependencies = [];
220
221 };
222
223 Hoogle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
224 name = "Hoogle-2018-03-04";
225 src = fetchgit {
226 url = "git://github.com/Twinside/vim-hoogle";
227 rev = "871d104c92e33cb238506f2805f1652561978cc8";
228 sha256 = "17qvi57g72ijgk7nczczli3kcphvdf625fzqbqcmqpsawgvfd07n";
229 };
230 dependencies = [];
231
232 };
233
234 Solarized = buildVimPluginFrom2Nix { # created by nix#NixDerivation
235 name = "Solarized-2011-05-09";
236 src = fetchgit {
237 url = "git://github.com/altercation/vim-colors-solarized";
238 rev = "528a59f26d12278698bb946f8fb82a63711eec21";
239 sha256 = "05d3lmd1shyagvr3jygqghxd3k8a4vp32723fvxdm57fdrlyzcm1";
240 };
241 dependencies = [];
242
243 };
244
245 Supertab = buildVimPluginFrom2Nix { # created by nix#NixDerivation
246 name = "Supertab-2017-11-14";
247 src = fetchgit {
248 url = "git://github.com/ervandew/supertab";
249 rev = "40fe711e088e2ab346738233dd5adbb1be355172";
250 sha256 = "0l5labq68kyprv63k1q35hz5ly0dd06mf2z202mccnix4mlxf0db";
251 };
252 dependencies = [];
253
254 };
255
256 Syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation
257 name = "Syntastic-2018-02-20";
258 src = fetchgit {
259 url = "git://github.com/scrooloose/syntastic";
260 rev = "b7b473b2688827dcd7d8c801197b8bfc31b20dc4";
261 sha256 = "11nwzgb5s75z348px81mmxh681rs25ccls9x5z8f36i7ykq46j1x";
262 };
263 dependencies = [];
264
265 };
266
267 SyntaxRange = buildVimPluginFrom2Nix { # created by nix#NixDerivation
268 name = "SyntaxRange-2018-03-09";
269 src = fetchgit {
270 url = "git://github.com/inkarkat/vim-SyntaxRange";
271 rev = "dc33d8f84ebbf4c9fa03ce00b8adeb83e05249d3";
272 sha256 = "0nf0hkgl5fm0laxb5253br894259kz33zyiwxzrry6w3108alasr";
273 };
274 dependencies = [];
275
276 };
277
278 Tabular = buildVimPluginFrom2Nix { # created by nix#NixDerivation
279 name = "Tabular-2016-05-04";
280 src = fetchgit {
281 url = "git://github.com/godlygeek/tabular";
282 rev = "00e1e7fcdbc6d753e0bc8043e0d2546fa81bf367";
283 sha256 = "185jpisk9hamcwb6aiavdzjdbbigzdra8f4mgs98r9cm9j448xkz";
284 };
285 dependencies = [];
286
287 };
288
289 Tagbar = buildVimPluginFrom2Nix { # created by nix#NixDerivation
290 name = "Tagbar-2017-12-17";
291 src = fetchgit {
292 url = "git://github.com/majutsushi/tagbar";
293 rev = "387bbadda98e1376ff3871aa461b1f0abd4ece70";
294 sha256 = "0srmslg0v1a7zhzz0wgzgv7jyr0j3q9m766qzb7zimkkb32fcbx9";
295 };
296 dependencies = [];
297
298 };
299
300 The_NERD_Commenter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
301 name = "The_NERD_Commenter-2018-03-03";
302 src = fetchgit {
303 url = "git://github.com/scrooloose/nerdcommenter";
304 rev = "e679d8a34193d1ac93b98ed792cdde7c9b1104a1";
305 sha256 = "0if71mcrc7cm8xr4m2zjcm2k4wkfhxyh6phfc0k13s8h392wb7v4";
306 };
307 dependencies = [];
308
309 };
310
311 The_NERD_tree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
312 name = "The_NERD_tree-2018-03-06";
313 src = fetchgit {
314 url = "git://github.com/scrooloose/nerdtree";
315 rev = "ed446e5cbe0733a8f98befc88d33e42edebb67d2";
316 sha256 = "0i5qy8lb8w5ri30905i7411754g2vzj4jlccak5lj852vyzgdp56";
317 };
318 dependencies = [];
319
320 };
321
322 UltiSnips = buildVimPluginFrom2Nix { # created by nix#NixDerivation
323 name = "UltiSnips-2017-06-30";
324 src = fetchgit {
325 url = "git://github.com/SirVer/ultisnips";
326 rev = "423f264e753cec260b4f14455126e6db7ba429af";
327 sha256 = "19g3k0nqzizv39rxwgkca9n2gsd19z2wwsmicr0zcgnf50nhkznh";
328 };
329 dependencies = [];
330
331 };
332
333 VimOutliner = buildVimPluginFrom2Nix { # created by nix#NixDerivation
334 name = "VimOutliner-2018-02-17";
335 src = fetchgit {
336 url = "git://github.com/vimoutliner/vimoutliner";
337 rev = "ec4dc9bd932a0cce476a3f8f0a78ca61ff94188c";
338 sha256 = "0fj3ya7n9wfbnkcdwp9kggm8c3p5jm3iwzbk4gdqjmhqkvdfz5rk";
339 };
340 dependencies = [];
341
342 };
343
344 WebAPI = buildVimPluginFrom2Nix { # created by nix#NixDerivation
345 name = "WebAPI-2018-02-08";
346 src = fetchgit {
347 url = "git://github.com/mattn/webapi-vim";
348 rev = "6459fbdd7fd38c4630fb49e9c687946633b58849";
349 sha256 = "0ndskj9rw526kgl1y645w1gqmsdw3268ps1armccadjj9d8flkdi";
350 };
351 dependencies = [];
352
353 };
354
355 YankRing = buildVimPluginFrom2Nix { # created by nix#NixDerivation
356 name = "YankRing";
357 src = fetchurl {
358 url = "http://www.vim.org/scripts/download_script.php?src_id=23487";
359 name = "yankring_190.zip";
360 sha256 = "0nnxpsfjp2p9jvs3y5ynnd5s56snz9927zdp9bgmay2jgxfmp0si";
361 };
362 buildInputs = [ unzip ];
363 dependencies = [];
364 meta = {
365 homepage = "http://www.vim.org/scripts/script.php?script_id=1234";
366 };
367
368 sourceRoot = ".";
369 };
370
371 caw = buildVimPluginFrom2Nix { # created by nix#NixDerivation
372 name = "caw-2018-01-01";
373 src = fetchgit {
374 url = "git://github.com/tyru/caw.vim";
375 rev = "50efcd94e00dc3e814bcc0d3d8ccfa3ff324ea42";
376 sha256 = "06hpby2amh2pb4dlfd7s6wybzc8rh8wa3jz0gyv6xx3l91agfari";
377 };
378 dependencies = [];
379
380 };
381
382 clang_complete = buildVimPluginFrom2Nix { # created by nix#NixDerivation
383 name = "clang_complete-2018-01-18";
384 src = fetchgit {
385 url = "git://github.com/Rip-Rip/clang_complete";
386 rev = "0918788ea0b9dc4c753ffd162c95f890ae57a275";
387 sha256 = "19hf7xrx1lsvn5rhwmc0qc1qzpb365j1d0jzvihd99p0zkgzgj1p";
388 };
389 dependencies = [];
390 # In addition to the arguments you pass to your compiler, you also need to
391 # specify the path of the C++ std header (if you are using C++).
392 # These usually implicitly set by cc-wrapper around clang (pkgs/build-support/cc-wrapper).
393 # The linked ruby code shows generates the required '.clang_complete' for cmake based projects
394 # https://gist.github.com/Mic92/135e83803ed29162817fce4098dec144
395 # as an alternative you can execute the following command:
396 # $ eval echo $(nix-instantiate --eval --expr 'with (import <nixpkgs>) {}; clang.default_cxx_stdlib_compile')
397 preFixup = ''
398 substituteInPlace "$out"/share/vim-plugins/clang_complete/plugin/clang_complete.vim \
399 --replace "let g:clang_library_path = '' + "''" + ''" "let g:clang_library_path='${llvmPackages.clang.cc}/lib/libclang.so'"
400 '';
401 };
402
403 commentary = buildVimPluginFrom2Nix { # created by nix#NixDerivation
404 name = "commentary-2017-10-09";
405 src = fetchgit {
406 url = "git://github.com/tpope/vim-commentary";
407 rev = "89f43af18692d22ed999c3097e449f12fdd8b299";
408 sha256 = "0nqm4s00c607r58fz29n67r2z5p5r9qayl5y1chy8bcrl59m17a2";
409 };
410 dependencies = [];
411
412 };
413
414 csv = buildVimPluginFrom2Nix { # created by nix#NixDerivation
415 name = "csv-2018-01-03";
416 src = fetchgit {
417 url = "git://github.com/chrisbra/csv.vim";
418 rev = "a50b977fa25a854e7d099198bfa65e2dc680898b";
419 sha256 = "02a6289rbjw8r0l668ala5abfr2rls3slrnk4yrsfc6ka550zj9y";
420 };
421 dependencies = [];
422
423 };
424
425 ctrlp-cmatcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation
426 name = "ctrlp-cmatcher-2015-10-15";
427 src = fetchgit {
428 url = "git://github.com/JazzCore/ctrlp-cmatcher";
429 rev = "6c36334f106b6fd981d23e724e9a618734cab43a";
430 sha256 = "1573kd6xf3n8sxlz2j4zadai4rnc7k3s9c54648yfzickwn57d8q";
431 };
432 dependencies = [];
433 buildInputs = [ python ];
434 buildPhase = ''
435 patchShebangs .
436 ./install.sh
437 '';
438 };
439
440 ctrlp-py-matcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation
441 name = "ctrlp-py-matcher-2017-11-01";
442 src = fetchgit {
443 url = "git://github.com/FelikZ/ctrlp-py-matcher";
444 rev = "cf63fd546f1e80dd4db3db96afbeaad301d21f13";
445 sha256 = "0hs829x3vxv12y78hz5g4a5qpw05xf42dk0hxxk3ind77mnl1ir1";
446 };
447 dependencies = [];
448
449 };
450
451 ctrlp-z = buildVimPluginFrom2Nix { # created by nix#NixDerivation
452 name = "ctrlp-z-2015-10-17";
453 src = fetchgit {
454 url = "git://github.com/amiorin/ctrlp-z";
455 rev = "d1a69ec623ce24b9a30fc8fe3cd468c322b03026";
456 sha256 = "16nsj1g8lqmyizlb5ijwhf4dsmh0xv1kwqq6jxvhaf55vfga82yl";
457 };
458 dependencies = [];
459
460 };
461
462 easygit = buildVimPluginFrom2Nix { # created by nix#NixDerivation
463 name = "easygit-2017-08-11";
464 src = fetchgit {
465 url = "git://github.com/chemzqm/vim-easygit";
466 rev = "8f66da54da627395309548efee6d8705b7f50768";
467 sha256 = "013jl330k9yjcvzzqhwz93adm4349gkl3q1c55m1zfkg3afmvnwd";
468 };
469 dependencies = [];
470
471 };
472
473 extradite = buildVimPluginFrom2Nix { # created by nix#NixDerivation
474 name = "extradite-2015-09-22";
475 src = fetchgit {
476 url = "git://github.com/int3/vim-extradite";
477 rev = "52326f6d333cdbb9e9c6d6772af87f4f39c00526";
478 sha256 = "0c89i0spvdm9vi65q15qcmsfmwa9rds2wmaq1kf6s7q7ywvs6w8i";
479 };
480 dependencies = [];
481
482 };
483
484 forms = buildVimPluginFrom2Nix { # created by nix#NixDerivation
485 name = "forms-2012-11-28";
486 src = fetchgit {
487 url = "git://github.com/megaannum/forms";
488 rev = "b601e03fe0a3b8a43766231f4a6217e4492b4f75";
489 sha256 = "19kp1i5c6jmnpbsap9giayqbzlv7vh02mp4mjvicqj9n0nfyay74";
490 };
491 dependencies = ["self"];
492
493 };
494
495 fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation
496 name = "fugitive-2018-01-25";
497 src = fetchgit {
498 url = "git://github.com/tpope/vim-fugitive";
499 rev = "b82abd5bd583cfb90be63ae12adc36a84577bd45";
500 sha256 = "0y3fkw7f5gqb339qlby19f444085c929gjbmbibmgig7hrarqrz4";
501 };
502 dependencies = [];
503
504 };
505
506 ghcmod = buildVimPluginFrom2Nix { # created by nix#NixDerivation
507 name = "ghcmod-2016-06-19";
508 src = fetchgit {
509 url = "git://github.com/eagletmt/ghcmod-vim";
510 rev = "1d192d13d68ab59f9f46497a0909bf24a7b7dfff";
511 sha256 = "0bzahgzagnf0a9zv86jhdf8nc3p0yfz9izv5n3lc8gc12cp47d0a";
512 };
513 dependencies = [];
514
515 };
516
517 vim-auto-save = buildVimPluginFrom2Nix { # created by nix#NixDerivation
518 name = "vim-auto-save-2017-11-08";
519 src = fetchgit {
520 url = "https://github.com/907th/vim-auto-save";
521 rev = "66643afb55a1fcd3a9b4336f868f58da45bff397";
522 sha256 = "1qnsj520j2hm6znpqpdqmz11vw45avgj8g9djx3alqbnab8ryw0p";
523 };
524 dependencies = [];
525
526 };
527
528 vim-autoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
529 name = "vim-autoformat-2018-03-02";
530 src = fetchgit {
531 url = "https://github.com/Chiel92/vim-autoformat";
532 rev = "e63b4e957ad034494b1495d4b4ac1a18503cba79";
533 sha256 = "1p64q9a7wqppy1zj70xki86zs5wwxbf9x0wdd4fsg0w741ga9wdf";
534 };
535 dependencies = [];
536
537 };
538
539 vim-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
540 name = "vim-nix-2018-04-24";
541 src = fetchgit {
542 url = "https://github.com/LnL7/vim-nix";
543 rev = "dae3d30a145f1d0e50658dafd88f95cd4b5e323d";
544 sha256 = "1x3gaiz2wbqykzhk0zj0krjp81m5rxhk80pcg96f4gyqp7hxrx78";
545 };
546 dependencies = [];
547
548 };
549
550 tsuquyomi = buildVimPluginFrom2Nix { # created by nix#NixDerivation
551 name = "tsuquyomi-2018-03-02";
552 src = fetchgit {
553 url = "https://github.com/Quramy/tsuquyomi";
554 rev = "064f5a2ccaf642681634cf06b8ce45751e1d0475";
555 sha256 = "12pik378p5c2w219yg8pb8lrdkhxvk0mvkji9dhh0h5v9yzk5x4z";
556 };
557 dependencies = [];
558
559 };
560
561 deoplete-nvim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
562 name = "deoplete-nvim-2018-02-28";
563 src = fetchgit {
564 url = "https://github.com/Shougo/deoplete.nvim";
565 rev = "642f9e9b0ed9457734d974aeb9417192077b7551";
566 sha256 = "1si07fw1ckgdl74xx0bq6hhd0nyi67gkjanqz4v317zpmzhcvi76";
567 };
568 dependencies = [];
569
570 };
571
572 Spacegray-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
573 name = "Spacegray-vim-2017-11-22";
574 src = fetchgit {
575 url = "https://github.com/ajh17/Spacegray.vim";
576 rev = "9a952cee86397ce28aef890209ccee2397d9a32e";
577 sha256 = "0ddxkmqcjns0vznqcwji835kkn8pps93kyksx34b57ssr1qq28d1";
578 };
579 dependencies = [];
580
581 };
582
583 nerdtree-git-plugin = buildVimPluginFrom2Nix { # created by nix#NixDerivation
584 name = "nerdtree-git-plugin-2017-03-12";
585 src = fetchgit {
586 url = "https://github.com/albfan/nerdtree-git-plugin";
587 rev = "d79a5d5a1b3bc5fab3ba94db44a8b2e5a211d61d";
588 sha256 = "0i77wijbr021zfv096ja15f5l52phvsd5gziqn1m3k60qkmb9gkj";
589 };
590 dependencies = [];
591
592 };
593
594 vim-closetag = buildVimPluginFrom2Nix { # created by nix#NixDerivation
595 name = "vim-closetag-2018-03-09";
596 src = fetchgit {
597 url = "https://github.com/alvan/vim-closetag";
598 rev = "aa14c2c1e7da4112e46ef6b287cacdd7af96da6f";
599 sha256 = "058z8dzqki3idv7r5654xd91wplhhnsa2l533rszmkzji3hj2why";
600 };
601 dependencies = [];
602
603 };
604
605 peskcolor-vim-git = buildVimPluginFrom2Nix { # created by nix#NixDerivation
606 name = "peskcolor-vim-git-2016-06-11";
607 src = fetchgit {
608 url = "https://github.com/andsild/peskcolor.vim.git";
609 rev = "cba4fc739bbebacd503158f6509d9c226651f363";
610 sha256 = "15hw3casr5y3ckgcn6aq8vhk6g2hym41w51nvgf34hbj9fx1nvkq";
611 };
612 dependencies = [];
613
614 };
615
616 flake8-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
617 name = "flake8-vim-2017-02-17";
618 src = fetchgit {
619 url = "https://github.com/andviro/flake8-vim";
620 rev = "01c4af4c68f33b2b3785314bfbf5b3d8d1451795";
621 sha256 = "14rv0p1vx4njlplkc72gz7r8sy9vc6n8x9l00zc777x5zzrhgz3g";
622 };
623 dependencies = [];
624
625 };
626
627 vim-css-color = buildVimPluginFrom2Nix { # created by nix#NixDerivation
628 name = "vim-css-color-2018-03-06";
629 src = fetchgit {
630 url = "https://github.com/ap/vim-css-color";
631 rev = "afaacf50e65b7d30b170e70ee13c1518dce1e032";
632 sha256 = "1ck8qv3wfmc7rdddzd7zh2dsnb0rx69grmc0laz7n1358xg0i4vx";
633 };
634 dependencies = [];
635
636 };
637
638 vim-bazel = buildVimPluginFrom2Nix { # created by nix#NixDerivation
639 name = "vim-bazel-2018-01-10";
640 src = fetchgit {
641 url = "https://github.com/bazelbuild/vim-bazel";
642 rev = "ecafb17d5d1d3756e5ac0bd9f4812a450b8c91a3";
643 sha256 = "0ixhx9ssfygjy2v2ss02w28rcjxnvhj0caffj32cv3snwnpcz6fy";
644 };
645 dependencies = ["maktaba"];
646
647 };
648
649 clighter8 = buildVimPluginFrom2Nix { # created by nix#NixDerivation
650 name = "clighter8-2018-01-24";
651 src = fetchgit {
652 url = "https://github.com/bbchung/clighter8";
653 rev = "314ab6887cfe785146b86d754441904a927f7999";
654 sha256 = "1j2lfx10r978348nycw5mpg2ahwiqcgqml2g2vps5yy9x891fzya";
655 };
656 dependencies = [];
657 preFixup = ''
658 sed "/^let g:clighter8_libclang_path/s|')$|${llvmPackages.clang.cc}/lib/libclang.so')|" \
659 -i "$out"/share/vim-plugins/clighter8/plugin/clighter8.vim
660 '';
661 };
662
663 neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation
664 name = "neomake-2018-03-07";
665 src = fetchgit {
666 url = "https://github.com/benekastah/neomake";
667 rev = "666e20797f8e8c9d2fdab906d313a5b9714543f0";
668 sha256 = "0wx82bal16jfq1kk2rxrpl79brqfhpdmwbx55wggh7rc893ll4v4";
669 };
670 dependencies = [];
671
672 };
673
674 vim-hdevtools = buildVimPluginFrom2Nix { # created by nix#NixDerivation
675 name = "vim-hdevtools-2017-03-11";
676 src = fetchgit {
677 url = "https://github.com/bitc/vim-hdevtools";
678 rev = "4ffdace7002915cb10d663a2c56386286c5b8e37";
679 sha256 = "0s7qd72962sc56j8xzpzikjs9k5s89d5p0j541abl8zm0mavmyka";
680 };
681 dependencies = [];
682
683 };
684
685 vim-trailing-whitespace = buildVimPluginFrom2Nix { # created by nix#NixDerivation
686 name = "vim-trailing-whitespace-2017-09-22";
687 src = fetchgit {
688 url = "https://github.com/bronson/vim-trailing-whitespace";
689 rev = "4c596548216b7c19971f8fc94e38ef1a2b55fee6";
690 sha256 = "0f1cpnp1nxb4i5hgymjn2yn3k1jwkqmlgw1g02sq270lavp2dzs9";
691 };
692 dependencies = [];
693
694 };
695
696 vim-toml = buildVimPluginFrom2Nix { # created by nix#NixDerivation
697 name = "vim-toml-2018-03-06";
698 src = fetchgit {
699 url = "https://github.com/cespare/vim-toml";
700 rev = "624f02475080ea26d9430b8d31d7c3199b0ec939";
701 sha256 = "0frjdv50rhd3awrddq25x4l22ca15i5587pgcmvwxz92y52484lx";
702 };
703 dependencies = [];
704
705 };
706
707 denite-extra = buildVimPluginFrom2Nix { # created by nix#NixDerivation
708 name = "denite-extra-2017-11-03";
709 src = fetchgit {
710 url = "https://github.com/chemzqm/denite-extra";
711 rev = "2cea3e857b51fcde425339adeec12854e6cecbb6";
712 sha256 = "1qa0ajs6vix0vvm1z7rhxq9bfx4aggq97gxghrxpvsc059c7w9wv";
713 };
714 dependencies = [];
715
716 };
717
718 denite-git = buildVimPluginFrom2Nix { # created by nix#NixDerivation
719 name = "denite-git-2017-11-02";
720 src = fetchgit {
721 url = "https://github.com/chemzqm/denite-git";
722 rev = "d40026c9b2c0e53ecdd3883d26260f19c74c7dfe";
723 sha256 = "0c9602pj67hqfkyvanz5gw1s6vlf8q7s9r55g4dws5aakvjbqc0g";
724 };
725 dependencies = [];
726
727 };
728
729 concealedyank-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
730 name = "concealedyank-vim-2013-03-24";
731 src = fetchgit {
732 url = "https://github.com/chikatoike/concealedyank.vim";
733 rev = "e7e65a395e0e6a266f3a808bc07441aa7d03ebbd";
734 sha256 = "0z7i8dmwfjh6mcrmgrxv3j86ic867617fas9mv4gqsrhhvrrkzsb";
735 };
736 dependencies = [];
737
738 };
739
740 vim-sort-motion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
741 name = "vim-sort-motion-2018-03-05";
742 src = fetchgit {
743 url = "https://github.com/christoomey/vim-sort-motion";
744 rev = "b4455cea401c86d189e84c4dda55f18d8a4a67d4";
745 sha256 = "0cav0l152qy8fvhwpcdr7lddf0jnjkjw6hnjrmmpvikxj7rq2yik";
746 };
747 dependencies = [];
748
749 };
750
751 vim-tmux-navigator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
752 name = "vim-tmux-navigator-2017-07-07";
753 src = fetchgit {
754 url = "https://github.com/christoomey/vim-tmux-navigator";
755 rev = "d724094e7128acd7375cc758008f1e1688130877";
756 sha256 = "1n0n26lx056a0f8nmzbjpf8a48971g4d0fzv8xmq8yy505gbq9iw";
757 };
758 dependencies = [];
759
760 };
761
762 spacevim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
763 name = "spacevim-2017-03-31";
764 src = fetchgit {
765 url = "https://github.com/ctjhoa/spacevim";
766 rev = "f4cd52c1746021bb3278c6a085e8d07f1c1a9258";
767 sha256 = "0y146z0w1cbqwzw84k479a5hxs1phg1s11fqfvszn8928fsm8c4d";
768 };
769 dependencies = [];
770
771 };
772
773 ctrlp-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
774 name = "ctrlp-vim-2018-02-10";
775 src = fetchgit {
776 url = "https://github.com/ctrlpvim/ctrlp.vim";
777 rev = "35c9b961c916e4370f97cb74a0ba57435a3dbc25";
778 sha256 = "08g1w7lfxpp0b175fkyyb8njpz7jwysfba0s20873f2frj6c77rc";
779 };
780 dependencies = [];
781
782 };
783
784 agda-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
785 name = "agda-vim-2017-11-21";
786 src = fetchgit {
787 url = "https://github.com/derekelkins/agda-vim";
788 rev = "13e3b24aeb8677205ff43a79c6c7e090a602b31a";
789 sha256 = "17vp11x1w9bibl5ibsvhw5m5ma2r8pzddshgxdvfg22wprx0kcp0";
790 };
791 dependencies = [];
792
793 };
794
795 vim-scala = buildVimPluginFrom2Nix { # created by nix#NixDerivation
796 name = "vim-scala-2017-11-10";
797 src = fetchgit {
798 url = "https://github.com/derekwyatt/vim-scala";
799 rev = "0b909e24f31d94552eafae610da0f31040c08f2b";
800 sha256 = "1lqqapimgjr7k4imr26ap0lgx6k4qjl5gmgb1knvh5kz100bsjl5";
801 };
802 dependencies = [];
803
804 };
805
806 vim-jade = buildVimPluginFrom2Nix { # created by nix#NixDerivation
807 name = "vim-jade-2017-04-07";
808 src = fetchgit {
809 url = "https://github.com/digitaltoad/vim-jade";
810 rev = "ddc5592f8c36bf4bd915c16b38b8c76292c2b975";
811 sha256 = "069pha18g1nlzg44k742vjxm4zwjd1qjzhfllkr35qaiflvjm84y";
812 };
813 dependencies = [];
814
815 };
816
817 pony-vim-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation
818 name = "pony-vim-syntax-2017-09-26";
819 src = fetchgit {
820 url = "https://github.com/dleonard0/pony-vim-syntax";
821 rev = "caa34b3d7a15d9bfbfbb2f5944c85eb1eddcfafc";
822 sha256 = "0r2lv99hkm95dv8wy9rkrkcwz5wkmwggfwi5vakgw497l3a9jskr";
823 };
824 dependencies = [];
825
826 };
827
828 vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
829 name = "vim-2018-03-11";
830 src = fetchgit {
831 url = "https://github.com/dracula/vim";
832 rev = "1f44625290f0f1488f7056e166f69ee6f171d273";
833 sha256 = "0xs5mbqgs5nvymiiwgbycb278v9mmjm3pxybqlyg5r09ri6ncfkq";
834 };
835 dependencies = [];
836
837 };
838
839 xptemplate = buildVimPluginFrom2Nix { # created by nix#NixDerivation
840 name = "xptemplate-2017-12-06";
841 src = fetchgit {
842 url = "https://github.com/drmingdrmer/xptemplate";
843 rev = "74aac3aebaf9c67c12c21d6b25295b9bec9c93b3";
844 sha256 = "01yvas50hg7iwwrdh61407mc477byviccksgi0fkaz89p78bbd1p";
845 };
846 dependencies = [];
847
848 };
849
850 neco-ghc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
851 name = "neco-ghc-2017-08-17";
852 src = fetchgit {
853 url = "https://github.com/eagletmt/neco-ghc";
854 rev = "faa033c05e6a6470d3d780e3931b4c9c72042009";
855 sha256 = "01l5n4x94sb6bhjhjx2sibs8gm3zla7hb6szdfgbdmdf7jlzazak";
856 };
857 dependencies = [];
858
859 };
860
861 editorconfig-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
862 name = "editorconfig-vim-2017-10-14";
863 src = fetchgit {
864 url = "https://github.com/editorconfig/editorconfig-vim";
865 rev = "0abb0634a8bf3c760a283e9e7475594b83869a46";
866 sha256 = "1wazl37ivn9nhsy296g1ncvvwc78930lbp8arhwavr52mzpfji21";
867 };
868 dependencies = [];
869
870 };
871
872 vim-cute-python-git = buildVimPluginFrom2Nix { # created by nix#NixDerivation
873 name = "vim-cute-python-git-2016-04-04";
874 src = fetchgit {
875 url = "https://github.com/ehamberg/vim-cute-python.git";
876 rev = "d7a6163f794500447242df2bedbe20bd751b92da";
877 sha256 = "1jrfd6z84cdzn3yxdfp0xfxygscq7s8kbzxk37hf9cf5pl9ln0qf";
878 };
879 dependencies = [];
880
881 };
882
883 acp = buildVimPluginFrom2Nix { # created by nix#NixDerivation
884 name = "acp-2013-02-05";
885 src = fetchgit {
886 url = "https://github.com/eikenb/acp";
887 rev = "5c627cec37d0d3b1670cb250d84e176e8b0c644e";
888 sha256 = "0h7s4nvxin7m2caka7g1hhlxj1bbiwsvw8s2lqwlh7nq43v23ghg";
889 };
890 dependencies = [];
891
892 };
893
894 vim-elixir = buildVimPluginFrom2Nix { # created by nix#NixDerivation
895 name = "vim-elixir-2018-02-28";
896 src = fetchgit {
897 url = "https://github.com/elixir-lang/vim-elixir";
898 rev = "bd75abb934c97a3d6d753f019e0f3aef3c132c2e";
899 sha256 = "1qic3av5avf50dvxkz1iq98impdabflk64xj5wmzr9iag1p0qwz9";
900 };
901 dependencies = [];
902
903 };
904
905 elm-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
906 name = "elm-vim-2017-07-09";
907 src = fetchgit {
908 url = "https://github.com/elmcast/elm-vim";
909 rev = "ae5315396cd0f3958750f10a5f3ad9d34d33f40d";
910 sha256 = "0a85l0mcxgha4s5c9lzdv9y2c1ff942y9a5sfjihz6sph21c77xp";
911 };
912 dependencies = [];
913
914 };
915
916 vim-json = buildVimPluginFrom2Nix { # created by nix#NixDerivation
917 name = "vim-json-2018-01-10";
918 src = fetchgit {
919 url = "https://github.com/elzr/vim-json";
920 rev = "3727f089410e23ae113be6222e8a08dd2613ecf2";
921 sha256 = "1c19pqrys45pzflj5jyrm4q6hcvs977lv6qsfvbnk7nm4skxrqp1";
922 };
923 dependencies = [];
924
925 };
926
927 vim-localvimrc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
928 name = "vim-localvimrc-2018-03-04";
929 src = fetchgit {
930 url = "https://github.com/embear/vim-localvimrc";
931 rev = "632d27c6c29bb2f05131c4bd2c804b9bf6068d57";
932 sha256 = "1xj9qvpvhzi31wj0wp0i67j233vzaj3zpplpacszki31bsai263f";
933 };
934 dependencies = [];
935
936 };
937
938 vim-haskellConcealPlus = buildVimPluginFrom2Nix { # created by nix#NixDerivation
939 name = "vim-haskellConcealPlus-2016-05-13";
940 src = fetchgit {
941 url = "https://github.com/enomsg/vim-haskellConcealPlus";
942 rev = "81dfb51ff8e471fb1f30659a10daaf1bdd65fb03";
943 sha256 = "0vm76gxw62lkyxccrlnn8sblfl3d51svwfra9wfixq4h51jdggyr";
944 };
945 dependencies = [];
946
947 };
948
949 ensime-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
950 name = "ensime-vim-2017-08-27";
951 src = fetchgit {
952 url = "https://github.com/ensime/ensime-vim";
953 rev = "d992b971a84afdfb2d99896d8aed537030e09a80";
954 sha256 = "1rhrq3zplvpyli1ymqjmhq91p61ixpjz1v5xf68nvq4ax50nl45z";
955 };
956 dependencies = ["vimproc" "vimshell" "self" "forms"];
957 pythonDependencies = with pythonPackages; [ sexpdata websocket_client ];
958 };
959
960 YUNOcommit-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
961 name = "YUNOcommit-vim-2014-11-26";
962 src = fetchgit {
963 url = "https://github.com/esneider/YUNOcommit.vim";
964 rev = "981082055a73ef076d7e27477874d2303153a448";
965 sha256 = "0mjc7fn405vcx1n7vadl98p5wgm6jxrlbdbkqgjq8f1m1ir81zab";
966 };
967 dependencies = [];
968
969 };
970
971 vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation
972 name = "vim-go-2018-03-07";
973 src = fetchgit {
974 url = "https://github.com/fatih/vim-go";
975 rev = "d2b0a234ffb5441a3488c78fe8e5f551ddbdd454";
976 sha256 = "1qcy1w9p23gxrii4ddg6mn8kn4i9d0q3rmkrblvxhbk7snxbh7n8";
977 };
978 dependencies = [];
979
980 };
981
982 vim-colorschemes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
983 name = "vim-colorschemes-2017-08-22";
984 src = fetchgit {
985 url = "https://github.com/flazz/vim-colorschemes";
986 rev = "eab315701f4627967fd62582eefc4e37a3745786";
987 sha256 = "12jfqfs6lqd6jijxrdx3k76bzxrh9517zwczb73qjaqbg286fh5k";
988 };
989 dependencies = [];
990
991 };
992
993 floobits-neovim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
994 name = "floobits-neovim-2017-08-02";
995 src = fetchgit {
996 url = "https://github.com/floobits/floobits-neovim";
997 rev = "9ccd5a8d5d28261b9686717d61a32b756f38f189";
998 sha256 = "02njg49qz9bfzggpn7z5c7w1wa1k5hxly66904wizl601fa6c664";
999 };
1000 dependencies = [];
1001
1002 };
1003
1004 psc-ide-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1005 name = "psc-ide-vim-2018-03-11";
1006 src = fetchgit {
1007 url = "https://github.com/frigoeu/psc-ide-vim";
1008 rev = "6d4a3cc27e9782b703f6dd61ef5fdf27054bac0f";
1009 sha256 = "19w0cvrka3klxbh9z1yq873v92rhmxdj68bdnqxzwybf24hgsk9g";
1010 };
1011 dependencies = [];
1012
1013 };
1014
1015 vim-codefmt = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1016 name = "vim-codefmt-2017-03-04";
1017 src = fetchgit {
1018 url = "https://github.com/google/vim-codefmt";
1019 rev = "8bae55b45c3f030845ab636d6860cef4071915d1";
1020 sha256 = "0wg0fplpwsgkbycjx1ryl29afbfzfsdv0j7xisjik26m9q8shn1k";
1021 };
1022 dependencies = ["maktaba"];
1023
1024 };
1025
1026 vim-jsonnet = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1027 name = "vim-jsonnet-2017-04-06";
1028 src = fetchgit {
1029 url = "https://github.com/google/vim-jsonnet";
1030 rev = "2637e273713322befc476760809d46500e6088f3";
1031 sha256 = "0fxmqasznb3ra49r4j3fmksik7narnd3b6j1j4najp4l61x27ip2";
1032 };
1033 dependencies = [];
1034
1035 };
1036
1037 vim-maktaba = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1038 name = "vim-maktaba-2017-12-29";
1039 src = fetchgit {
1040 url = "https://github.com/google/vim-maktaba";
1041 rev = "6e3be879bcf2d4e3c5bb56653e5eda9e08b84982";
1042 sha256 = "1nbpn6pcphrakd4icl24l4a68hjcq4a0aaq6kdwrvlsd1c3lk4dm";
1043 };
1044 dependencies = [];
1045
1046 };
1047
1048 gitv = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1049 name = "gitv-2017-11-26";
1050 src = fetchgit {
1051 url = "https://github.com/gregsexton/gitv";
1052 rev = "4b7ecf354726a3d31d0ad9090efd27a79c850a35";
1053 sha256 = "0n2ddq0kicl2xjrhxi5pqvpikxa7vbf0hp3lzwmpapmvx146wi3w";
1054 };
1055 dependencies = ["fugitive"];
1056
1057 };
1058
1059 vim-jsdoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1060 name = "vim-jsdoc-2017-12-18";
1061 src = fetchgit {
1062 url = "https://github.com/heavenshell/vim-jsdoc";
1063 rev = "a164cb4c14b9063e82b6ccba96b4bc8b3a6d8f73";
1064 sha256 = "0f4hj2vd4l4rprizkg64q6dmm86f5yc9gk554a6f4kpagw2w9y76";
1065 };
1066 dependencies = [];
1067
1068 };
1069
1070 vim-leader-guide = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1071 name = "vim-leader-guide-2017-03-18";
1072 src = fetchgit {
1073 url = "https://github.com/hecal3/vim-leader-guide";
1074 rev = "6ac8c663e65c9c0ded70417b84f66ee59457893e";
1075 sha256 = "1hqha3ig40ls15bnb10xpbl91swn0gxqnhmz5frkvvdzj4wq55fw";
1076 };
1077 dependencies = [];
1078
1079 };
1080
1081 idris-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1082 name = "idris-vim-2017-12-04";
1083 src = fetchgit {
1084 url = "https://github.com/idris-hackers/idris-vim";
1085 rev = "091ed6b267749927777423160eeab520109dd9c1";
1086 sha256 = "1zibar2vxcmai0k37ricwnimfdv1adxfbbvz871rc4l6h3q85if1";
1087 };
1088 dependencies = [];
1089
1090 };
1091
1092 calendar-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1093 name = "calendar-vim-2017-12-14";
1094 src = fetchgit {
1095 url = "https://github.com/itchyny/calendar.vim";
1096 rev = "25009a8eeae8ecca0c0d74f06f62ad82d2557c1c";
1097 sha256 = "0kswc92frzsgsd2qzajxdndkyd2yxh8gmcxib5a3by8sg27qvi8p";
1098 };
1099 dependencies = [];
1100
1101 };
1102
1103 lightline-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1104 name = "lightline-vim-2018-01-31";
1105 src = fetchgit {
1106 url = "https://github.com/itchyny/lightline.vim";
1107 rev = "78c43c144643e49c529a93b9eaa4eda12614f923";
1108 sha256 = "1g1s8bi6pzjc9kbqd1mn1d2ym6c90xf22dv2wfli0nyp6dsja2v2";
1109 };
1110 dependencies = [];
1111
1112 };
1113
1114 thumbnail-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1115 name = "thumbnail-vim-2017-04-24";
1116 src = fetchgit {
1117 url = "https://github.com/itchyny/thumbnail.vim";
1118 rev = "71cb5d48e59fc77149c1d1036ecd9e39f0b46a00";
1119 sha256 = "0b25n28ri6n5rrvgfynv8rm5pzzxpnrnj1l3647pf2fjxd2z2rv5";
1120 };
1121 dependencies = [];
1122
1123 };
1124
1125 vim-gitbranch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1126 name = "vim-gitbranch-2017-05-28";
1127 src = fetchgit {
1128 url = "https://github.com/itchyny/vim-gitbranch";
1129 rev = "8118dc1cdd387bd609852be4bf350360ce881193";
1130 sha256 = "01gvd96mnzfc5s0951zzq122birg5svnximkldgb9kv5bmsnmh3j";
1131 };
1132 dependencies = [];
1133
1134 };
1135
1136 vim-ipython = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1137 name = "vim-ipython-2015-06-23";
1138 src = fetchgit {
1139 url = "https://github.com/ivanov/vim-ipython";
1140 rev = "42499f094b805b90b683afa5009cee99abd0bb75";
1141 sha256 = "10wpfvfs8yv1bvzra4d5zy5glp62gbalpayxx7mkalhr2ccppy3x";
1142 };
1143 dependencies = [];
1144
1145 };
1146
1147 vim-test-git = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1148 name = "vim-test-git-2018-03-08";
1149 src = fetchgit {
1150 url = "https://github.com/janko-m/vim-test.git";
1151 rev = "3760d79934bb95c782611601187067730e108a26";
1152 sha256 = "06l4h66vzk4h628q45g3z529m3db28d5qfiabwr6l6x9sph5ha82";
1153 };
1154 dependencies = [];
1155
1156 };
1157
1158 vim-hier = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1159 name = "vim-hier-2011-08-27";
1160 src = fetchgit {
1161 url = "https://github.com/jceb/vim-hier";
1162 rev = "0b8c365263551a67404ebd7e528c55e17c1d3de7";
1163 sha256 = "118pd9sx1bl9vfr89xrf536hfx4l162a43a1qpwpkqxzb9a3ca7n";
1164 };
1165 dependencies = [];
1166 buildInputs = [ vim ];
1167 };
1168
1169 vim-orgmode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1170 name = "vim-orgmode-2017-11-17";
1171 src = fetchgit {
1172 url = "https://github.com/jceb/vim-orgmode";
1173 rev = "ce17a40108a7d5051a3909bd7c5c94b0b5660637";
1174 sha256 = "0ni99a5zylb0sbmik2xydia87qlv1xcl18j92nwxg8d6wxsnywb9";
1175 };
1176 dependencies = [];
1177
1178 };
1179
1180 vim-buffergator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1181 name = "vim-buffergator-2017-02-05";
1182 src = fetchgit {
1183 url = "https://github.com/jeetsukumaran/vim-buffergator";
1184 rev = "04dfbc0c78b0a29b340a99d0ff36ecf8f16e017d";
1185 sha256 = "1z13qqmvzismz7f6ss2pk956adnqh14df8qrlzk9rgplknm4w6k7";
1186 };
1187 dependencies = [];
1188
1189 };
1190
1191 tslime-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1192 name = "tslime-vim-2016-06-14";
1193 src = fetchgit {
1194 url = "https://github.com/jgdavey/tslime.vim";
1195 rev = "c980c76bbfc9a523fcf1edf08580d0d3a486e8f2";
1196 sha256 = "0gifyxwlspfnkni886adwn9kc0dckanjk0097y8pwxh7qbwfydf1";
1197 };
1198 dependencies = [];
1199
1200 };
1201
1202 vim-docbk = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1203 name = "vim-docbk-2015-04-01";
1204 src = fetchgit {
1205 url = "https://github.com/jhradilek/vim-docbk";
1206 rev = "6ac0346ce96dbefe982b9e765a81c072997f2e9e";
1207 sha256 = "1jnx39m152hf9j620ygagaydg6h8m8gxkr1fmxj6kgqf71jr0n9d";
1208 };
1209 dependencies = [];
1210
1211 };
1212
1213 auto-pairs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1214 name = "auto-pairs-2017-07-03";
1215 src = fetchgit {
1216 url = "https://github.com/jiangmiao/auto-pairs";
1217 rev = "f0019fc6423e7ce7bbd01d196a7e027077687fda";
1218 sha256 = "1kzrdq3adwxwm3fw65g05ww9405lwqi368win5kayamyj9i0z7r6";
1219 };
1220 dependencies = [];
1221
1222 };
1223
1224 vim-nerdtree-tabs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1225 name = "vim-nerdtree-tabs-2017-07-04";
1226 src = fetchgit {
1227 url = "https://github.com/jistr/vim-nerdtree-tabs";
1228 rev = "47bbe5afc26f701f08d31b2bbdb660f117367ded";
1229 sha256 = "0a1gqdvmpa4gylnb7sxs6zr89i60fl16p477200x18hgh2zd2v02";
1230 };
1231 dependencies = [];
1232
1233 };
1234
1235 zenburn = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1236 name = "zenburn-2015-09-18";
1237 src = fetchgit {
1238 url = "https://github.com/jnurmine/zenburn";
1239 rev = "f7847fb1531b91e2b4bb4aed5db3146f07765179";
1240 sha256 = "1las12jznf25dkxrjk3s9l70c6wnpjisngmvi83bhw5gvx4c7mq5";
1241 };
1242 dependencies = [];
1243
1244 };
1245
1246 vim-colorstepper = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1247 name = "vim-colorstepper-2016-01-28";
1248 src = fetchgit {
1249 url = "https://github.com/jonbri/vim-colorstepper";
1250 rev = "f23ba0d995d41508a2dc9471cf31d3d01a4b5f05";
1251 sha256 = "05ykxn0gmh8liz0zv5hb8df1ajggxp88izq3825m0yb3ma3k1jqs";
1252 };
1253 dependencies = [];
1254
1255 };
1256
1257 vim-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1258 name = "vim-xdebug-2012-08-15";
1259 src = fetchgit {
1260 url = "https://github.com/joonty/vim-xdebug";
1261 rev = "a4980fa65f7f159780593ee37c178281691ba2c4";
1262 sha256 = "1qh18r0sm4gh95sjbi2hnflvxdl4gk00jyy3n7z4i1gnx9ihxjqw";
1263 };
1264 dependencies = [];
1265 postInstall = false;
1266 };
1267
1268 fzf-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1269 name = "fzf-vim-2018-03-09";
1270 src = fetchgit {
1271 url = "https://github.com/junegunn/fzf.vim";
1272 rev = "a362bc58f1fbbfbbbef749851006e46155979c7d";
1273 sha256 = "187d7aw5g7nr6cg5la86kdplb32zy58w1mfm3npb47qm9sydgql6";
1274 };
1275 dependencies = [];
1276
1277 };
1278
1279 limelight-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1280 name = "limelight-vim-2016-06-24";
1281 src = fetchgit {
1282 url = "https://github.com/junegunn/limelight.vim";
1283 rev = "106fb5749d227a0de72e36068ed72798c6fd48e6";
1284 sha256 = "0fp4yp50n5v5zx3a7afh9wip4nwcfhmdgdzwpnl79jvild1z9fgh";
1285 };
1286 dependencies = [];
1287
1288 };
1289
1290 vim-peekaboo = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1291 name = "vim-peekaboo-2017-03-20";
1292 src = fetchgit {
1293 url = "https://github.com/junegunn/vim-peekaboo";
1294 rev = "a7c940b15b008afdcea096d3fc4d25e3e431eb49";
1295 sha256 = "1rc4hr6vwj2mmrgz8lifxf9rvcw1rb5dahq649yn8ccw03x8zn6m";
1296 };
1297 dependencies = [];
1298
1299 };
1300
1301 vim-eighties = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1302 name = "vim-eighties-2016-12-15";
1303 src = fetchgit {
1304 url = "https://github.com/justincampbell/vim-eighties";
1305 rev = "1a6ea42ead1e31524ec94cfefb6afc1d8dacd170";
1306 sha256 = "1yh1kny28c7f5qm52y7xd5aj4mycksfb0x1zvcb37c73ycdxc1v2";
1307 };
1308 dependencies = [];
1309
1310 };
1311
1312 vim-niceblock = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1313 name = "vim-niceblock-2018-01-30";
1314 src = fetchgit {
1315 url = "https://github.com/kana/vim-niceblock";
1316 rev = "178629a8b81da2fa614bd6c19e7797e325ee9153";
1317 sha256 = "1bz8qjnwk3gz9h0194g3qqga91i4k78r9s1xymn2fv35llrfsdx0";
1318 };
1319 dependencies = [];
1320
1321 };
1322
1323 vim-operator-replace = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1324 name = "vim-operator-replace-2015-02-25";
1325 src = fetchgit {
1326 url = "https://github.com/kana/vim-operator-replace";
1327 rev = "1345a556a321a092716e149d4765a5e17c0e9f0f";
1328 sha256 = "07cibp61zwbzpjfxqdc77fzrgnz8jhimmdhhyjr0lvgrjgvsnv6q";
1329 };
1330 dependencies = [];
1331
1332 };
1333
1334 vim-operator-user = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1335 name = "vim-operator-user-2015-02-17";
1336 src = fetchgit {
1337 url = "https://github.com/kana/vim-operator-user";
1338 rev = "c3dfd41c1ed516b4b901c97562e644de62c367aa";
1339 sha256 = "16y2fyrmwg4vkcl85i8xg8s6m39ca2jvgi9qm36b3vzbnkcifafb";
1340 };
1341 dependencies = [];
1342
1343 };
1344
1345 latex-box = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1346 name = "latex-box-2015-06-01";
1347 src = fetchgit {
1348 url = "https://github.com/latex-box-team/latex-box";
1349 rev = "3c2901e12cb78bfb2be58ba4c62a488612550fe1";
1350 sha256 = "1z4mdy47cpwcdhvy8mr72vhlybxn1y59yd3ixf6ids1bzpkrd7zl";
1351 };
1352 dependencies = [];
1353
1354 };
1355
1356 typescript-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1357 name = "typescript-vim-2018-03-08";
1358 src = fetchgit {
1359 url = "https://github.com/leafgarland/typescript-vim";
1360 rev = "e25636b44211a4be7b089bfed7cf09aa7dd086f5";
1361 sha256 = "1i422j4za5xwcv3zz7cjw523nnh5q652c04phqp681lgdmgqszh4";
1362 };
1363 dependencies = [];
1364
1365 };
1366
1367 vim-jinja = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1368 name = "vim-jinja-2016-11-16";
1369 src = fetchgit {
1370 url = "https://github.com/lepture/vim-jinja";
1371 rev = "8d330a7aaf0763d080dc82204b4aaba6ac0605c6";
1372 sha256 = "1n62ga02rcj7jjgzvwr46pckj59dc1zqahjgampjcwdd8vf4mg3q";
1373 };
1374 dependencies = [];
1375
1376 };
1377
1378 vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1379 name = "vimtex-2018-03-10";
1380 src = fetchgit {
1381 url = "https://github.com/lervag/vimtex";
1382 rev = "38a434a38a11d10da43dea1aac8f1143404c3eaf";
1383 sha256 = "0hz807i3byhrvbv98rl8k4r3n6dyninaqlr1kga95dllg6xr0k5p";
1384 };
1385 dependencies = [];
1386
1387 };
1388
1389 vim-easymotion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1390 name = "vim-easymotion-2017-10-20";
1391 src = fetchgit {
1392 url = "https://github.com/lokaltog/vim-easymotion";
1393 rev = "342549e7a1e5b07a030803e0e4b6f0415aa51275";
1394 sha256 = "1glv4s95v8xxj47n0jzjxd0pxphnnpgzyd384d2bh0ql1xgf320v";
1395 };
1396 dependencies = [];
1397
1398 };
1399
1400 vim-lawrencium = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1401 name = "vim-lawrencium-2017-01-10";
1402 src = fetchgit {
1403 url = "https://github.com/ludovicchabant/vim-lawrencium";
1404 rev = "88077183e1f5a9a1f741aeab7a1374cfed9e917f";
1405 sha256 = "0z31v93wjycq4lqvbl1jzxi7i5i1vl919m4dyyzphybcqrjjpnab";
1406 };
1407 dependencies = [];
1408
1409 };
1410
1411 rainbow = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1412 name = "rainbow-2017-04-21";
1413 src = fetchgit {
1414 url = "https://github.com/luochen1990/rainbow";
1415 rev = "1c45e0f81324641b23d4c21edda4eabeacba031b";
1416 sha256 = "143bkawg4sy1vbizfwb6p9alizyr80sr6incxrz179l9dp9r8frf";
1417 };
1418 dependencies = [];
1419
1420 };
1421
1422 vim-xkbswitch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1423 name = "vim-xkbswitch-2017-03-27";
1424 src = fetchgit {
1425 url = "https://github.com/lyokha/vim-xkbswitch";
1426 rev = "a85ebddb9038e6b05138c48868a319a9e13d1868";
1427 sha256 = "0v0wckkvsj3pd3a5lj35dqwlvgr1kfz0x6rpnx28mzrcg05p19fr";
1428 };
1429 dependencies = [];
1430 patchPhase = ''
1431 substituteInPlace plugin/xkbswitch.vim \
1432 --replace /usr/local/lib/libxkbswitch.so ${xkb_switch}/lib/libxkbswitch.so
1433 '';
1434 buildInputs = [ xkb_switch ];
1435 };
1436
1437 vim-highlightedyank = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1438 name = "vim-highlightedyank-2018-03-08";
1439 src = fetchgit {
1440 url = "https://github.com/machakann/vim-highlightedyank";
1441 rev = "775326f9cf63098a347cea842bb6069590771371";
1442 sha256 = "1414acj3ma7iydkr8vgysblmbcizflm9ivwhikanj1klyj0jm2rl";
1443 };
1444 dependencies = [];
1445
1446 };
1447
1448 Jenkinsfile-vim-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1449 name = "Jenkinsfile-vim-syntax-2018-03-05";
1450 src = fetchgit {
1451 url = "https://github.com/martinda/Jenkinsfile-vim-syntax";
1452 rev = "6d8957428ef53620f00c1ec74d08712f41515085";
1453 sha256 = "1pn33lvv5cls45vd8g1cm2fi0cm1lzwnsqcacgxcv67l25mg5979";
1454 };
1455 dependencies = [];
1456
1457 };
1458
1459 self = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1460 name = "self-2014-05-28";
1461 src = fetchgit {
1462 url = "https://github.com/megaannum/self";
1463 rev = "2ed666b547eddee6ae1fcc63babca4ba0b66a59f";
1464 sha256 = "1gcwn6i5i3msg7hrlzsnv1bs6pm4jz9cff8ppaz2xdj8xv9qy6fn";
1465 };
1466 dependencies = [];
1467
1468 };
1469
1470 robotframework-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1471 name = "robotframework-vim-2017-04-14";
1472 src = fetchgit {
1473 url = "https://github.com/mfukar/robotframework-vim";
1474 rev = "75d5b371a4da2a090a2872d55bd0dead013f334e";
1475 sha256 = "091ac5rq6f1a7j2q3dy9rc00vckv21m4wd29ijj63jannr02v5ad";
1476 };
1477 dependencies = [];
1478
1479 };
1480
1481 vim-grepper-git = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1482 name = "vim-grepper-git-2018-03-06";
1483 src = fetchgit {
1484 url = "https://github.com/mhinz/vim-grepper.git";
1485 rev = "46d78f293b12d8ba743f68ce4fb69881a64d30b2";
1486 sha256 = "19pbsv8i58r2z5a2yvn8f8v7gjz82nn8mw0hhfzwg5nlj0nn5kx3";
1487 };
1488 dependencies = [];
1489
1490 };
1491
1492 vim-startify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1493 name = "vim-startify-2018-02-28";
1494 src = fetchgit {
1495 url = "https://github.com/mhinz/vim-startify";
1496 rev = "226cafe0a0e42339919577c7388f7acdc554127b";
1497 sha256 = "1w6ycxha9mcrf5q9f5zr627fg70gmabbd5b4yd8pnhbrsfjyvrf8";
1498 };
1499 dependencies = [];
1500
1501 };
1502
1503 vim-indent-object = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1504 name = "vim-indent-object-2017-03-23";
1505 src = fetchgit {
1506 url = "https://github.com/michaeljsmith/vim-indent-object";
1507 rev = "41d700f14b3decccdde421fbfe49e95a084a2f89";
1508 sha256 = "12mi4n5abfxx7xjl46aw400acgrjf1fxjgzak763l874y0whf5v2";
1509 };
1510 dependencies = [];
1511
1512 };
1513
1514 ack-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1515 name = "ack-vim-2018-02-28";
1516 src = fetchgit {
1517 url = "https://github.com/mileszs/ack.vim";
1518 rev = "36e40f9ec91bdbf6f1adf408522a73a6925c3042";
1519 sha256 = "0yppr89hd1jyp0pj56hxdjbn32sr7pj3mihd18wxispvl5dqd6fm";
1520 };
1521 dependencies = [];
1522
1523 };
1524
1525 vim-yapf = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1526 name = "vim-yapf-2017-03-21";
1527 src = fetchgit {
1528 url = "https://github.com/mindriot101/vim-yapf";
1529 rev = "324380d77c9cf8e46e22b2e4391702273a53f563";
1530 sha256 = "0vsd53k5k8absc60qka8nlj2ij6k4zgff2a65ixc7vqcmawxr3nw";
1531 };
1532 dependencies = [];
1533 buildPhase = ''
1534 substituteInPlace ftplugin/python_yapf.vim \
1535 --replace '"yapf"' '"${python3Packages.yapf}/bin/yapf"'
1536 '';
1537 };
1538
1539 lushtags = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1540 name = "lushtags-2017-04-19";
1541 src = fetchgit {
1542 url = "https://github.com/mkasa/lushtags";
1543 rev = "fd7fa5a0162d9aa159559880d5ba4731e180eeaf";
1544 sha256 = "1si5n07k4r8kji4whglav9q59ksv6bi5v58xbpc2l5bavlk8kn6n";
1545 };
1546 dependencies = [];
1547
1548 };
1549
1550 hlint-refactor-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1551 name = "hlint-refactor-vim-2015-12-05";
1552 src = fetchgit {
1553 url = "https://github.com/mpickering/hlint-refactor-vim";
1554 rev = "fffb044ecef854a82c5c2efda252e09044ba03e0";
1555 sha256 = "0z8d31arfy9aidg1dwj5msnnx799d9r7njkgh51z695w6ayxn6p8";
1556 };
1557 dependencies = [];
1558
1559 };
1560
1561 vim-indent-guides = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1562 name = "vim-indent-guides-2017-07-03";
1563 src = fetchgit {
1564 url = "https://github.com/nathanaelkane/vim-indent-guides";
1565 rev = "b40687195c01caf40f62d20093296590b48e3a75";
1566 sha256 = "17hc3bdb707lkg0kyac2czjjijdrzarnh6sr78s9rqpwrj3fj4i4";
1567 };
1568 dependencies = [];
1569
1570 };
1571
1572 vim-stylish-haskell = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1573 name = "vim-stylish-haskell-2015-05-10";
1574 src = fetchgit {
1575 url = "https://github.com/nbouscal/vim-stylish-haskell";
1576 rev = "c664376ba814de3f87cb7641f90b2c6a9dd53671";
1577 sha256 = "1xm5ark2mwphznv3xsyzgcldnr52i5jzk1pfqdh0080j07aama8j";
1578 };
1579 dependencies = [];
1580
1581 };
1582
1583 haskell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1584 name = "haskell-vim-2018-01-25";
1585 src = fetchgit {
1586 url = "https://github.com/neovimhaskell/haskell-vim";
1587 rev = "430b529224c5f9ae53b148f814b7b1fc82b8b525";
1588 sha256 = "15z259b9b3wbklc8rndsq2rlhgccvxhfgd76yy80jqjmfmzib8kg";
1589 };
1590 dependencies = [];
1591
1592 };
1593
1594 cpsm = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1595 name = "cpsm-2018-02-01";
1596 src = fetchgit {
1597 url = "https://github.com/nixprime/cpsm";
1598 rev = "8a4a0a05162762b857b656d51b59a5bf01850877";
1599 sha256 = "0v44gf9ygrqc6rpfpiq329jija4icy0iy240yk30c0r04mjahc0b";
1600 };
1601 dependencies = [];
1602 buildInputs = [
1603 python3
1604 stdenv
1605 cmake
1606 boost
1607 icu
1608 ncurses
1609 ];
1610 buildPhase = ''
1611 patchShebangs .
1612 export PY3=ON
1613 ./install.sh
1614 '';
1615 };
1616
1617 shabadou-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1618 name = "shabadou-vim-2016-07-19";
1619 src = fetchgit {
1620 url = "https://github.com/osyo-manga/shabadou.vim";
1621 rev = "7d4bfed1ea8985ae125df3d1403cc19e252443e1";
1622 sha256 = "1kvik1yf7yjg9jdmdw38yhkksxg0n3nry02banwik7wgjnpvg870";
1623 };
1624 dependencies = [];
1625
1626 };
1627
1628 vim-textobj-multiblock = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1629 name = "vim-textobj-multiblock-2014-06-02";
1630 src = fetchgit {
1631 url = "https://github.com/osyo-manga/vim-textobj-multiblock";
1632 rev = "670a5ba57d73fcd793f480e262617c6eb0103355";
1633 sha256 = "1s71hdr73cl8yg9mrdflvzrdccpiv7qrlainai7gqw30r1hfhfzf";
1634 };
1635 dependencies = [];
1636
1637 };
1638
1639 vim-watchdogs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1640 name = "vim-watchdogs-2017-12-03";
1641 src = fetchgit {
1642 url = "https://github.com/osyo-manga/vim-watchdogs";
1643 rev = "a6415c2d928af8c1aacdbce9b1ed8d315891eb03";
1644 sha256 = "0n6aqsgn0q1qgpj4yznqwbsbbk2a077gnjlq86ii3jhkzh5fzcff";
1645 };
1646 dependencies = [];
1647
1648 };
1649
1650 vim-markdown = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1651 name = "vim-markdown-2018-01-20";
1652 src = fetchgit {
1653 url = "https://github.com/plasticboy/vim-markdown";
1654 rev = "861e84fc0bc97be8387e92ac2fc180599dc2b5a3";
1655 sha256 = "1lfcl6rsjqyzny5rvipm1wd4qxnv96ff8anjaba0rv4m7b99yv6z";
1656 };
1657 dependencies = [];
1658
1659 };
1660
1661 python-mode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1662 name = "python-mode-2018-02-19";
1663 src = fetchgit {
1664 url = "https://github.com/python-mode/python-mode";
1665 rev = "d5e7be11a74e8bda57388415d07d0faa0bcf9c5c";
1666 sha256 = "13863z80dwzmyi2adjc3hywqqd14w43nkhzy7lqarqiv7ks207kv";
1667 };
1668 dependencies = [];
1669
1670 };
1671
1672 vim-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1673 name = "vim-racer-2017-10-15";
1674 src = fetchgit {
1675 url = "https://github.com/racer-rust/vim-racer";
1676 rev = "da725d38a6f0dd223771018c05e62a33c4a92f09";
1677 sha256 = "16m9iw6x6wr26ilm72vwjsm9p346hbjd6md62mqk6ranln8rdirp";
1678 };
1679 dependencies = [];
1680
1681 };
1682
1683 purescript-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1684 name = "purescript-vim-2018-03-11";
1685 src = fetchgit {
1686 url = "https://github.com/raichoo/purescript-vim";
1687 rev = "bd19dedebc7420565b8aec111e59217da838db59";
1688 sha256 = "1h7fh5kfs4s735gj2nc7dvsir5fzvg49ajvcg35filwlx13r9nvj";
1689 };
1690 dependencies = [];
1691
1692 };
1693
1694 vim-wordy = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1695 name = "vim-wordy-2018-03-10";
1696 src = fetchgit {
1697 url = "https://github.com/reedes/vim-wordy";
1698 rev = "14b9dbf76a82e29273a74768573900361200467f";
1699 sha256 = "0qx3ngw4k7bgzmxpv1x4lkq3njm3zcb1j5ph6fx26wgagxhiaqhk";
1700 };
1701 dependencies = [];
1702
1703 };
1704
1705 committia-vim-git = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1706 name = "committia-vim-git-2018-03-01";
1707 src = fetchgit {
1708 url = "https://github.com/rhysd/committia.vim.git";
1709 rev = "78d5aceaeed3ba7d6ed503df7ae54a5e7505eed0";
1710 sha256 = "1wpvjkb62vb70yg7x3k84rk6fv0ykxms7bpn511z8dbs5v8xzzjg";
1711 };
1712 dependencies = [];
1713
1714 };
1715
1716 vim-grammarous = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1717 name = "vim-grammarous-2018-02-24";
1718 src = fetchgit {
1719 url = "https://github.com/rhysd/vim-grammarous";
1720 rev = "c039e40bc9124a2467376da2434a46cd216c49c6";
1721 sha256 = "1mg3nqm4klimnljd642cd3z7nvhbrg1va09d7bnxcp6flyabpbfh";
1722 };
1723 dependencies = [];
1724 # use `:GrammarousCheck` to initialize checking
1725 # In neovim, you also want to use set
1726 # let g:grammarous#show_first_error = 1
1727 # see https://github.com/rhysd/vim-grammarous/issues/39
1728 patches = [
1729 (substituteAll {
1730 src = ./patches/vim-grammarous/set_default_languagetool.patch;
1731 inherit languagetool;
1732 })
1733 ];
1734 };
1735
1736 vim-operator-surround = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1737 name = "vim-operator-surround-2017-12-23";
1738 src = fetchgit {
1739 url = "https://github.com/rhysd/vim-operator-surround";
1740 rev = "001c0da077b5b38a723151b19760d220e02363db";
1741 sha256 = "0c6w6id57faw6sjf5wvw9qp2a4i7xj65q0c4hjs0spgzycv2wpkh";
1742 };
1743 dependencies = [];
1744
1745 };
1746
1747 vim-puppet = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1748 name = "vim-puppet-2018-03-03";
1749 src = fetchgit {
1750 url = "https://github.com/rodjek/vim-puppet";
1751 rev = "921ccf81b5e11b40a49c458469ffa46c0d0560f8";
1752 sha256 = "0c1lnxn2ja68p8vhvv5gzg3m79aiazpfagmjnydfndv1dvbww39a";
1753 };
1754 dependencies = [];
1755
1756 };
1757
1758 nvim-cm-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1759 name = "nvim-cm-racer-2017-07-27";
1760 src = fetchgit {
1761 url = "https://github.com/roxma/nvim-cm-racer";
1762 rev = "2a8a4a49fa58c5dac9e0bed9511f6928930cacd2";
1763 sha256 = "1yljxwypgn91084yyicbc2qprn31ld7s4drvnddzczyhzq5m2gpx";
1764 };
1765 dependencies = [];
1766
1767 };
1768
1769 nvim-completion-manager = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1770 name = "nvim-completion-manager-2017-12-28";
1771 src = fetchgit {
1772 url = "https://github.com/roxma/nvim-completion-manager";
1773 rev = "e724a442072261993ca503e969d2cb25722ab1d2";
1774 sha256 = "00q52vl06hgcinclszm21a3rx7ivc147p52w1p29icksc26yxhjb";
1775 };
1776 dependencies = [];
1777
1778 };
1779
1780 rust-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1781 name = "rust-vim-2018-01-15";
1782 src = fetchgit {
1783 url = "https://github.com/rust-lang/rust.vim";
1784 rev = "8e75da9834abb22f8d7ece3f4ca4324a14fa18a6";
1785 sha256 = "1mn4jijfzz2jq215dnwkq5gxiw0ysmvrsrvq4aypr2ms2040iqiq";
1786 };
1787 dependencies = [];
1788
1789 };
1790
1791 vim-devicons = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1792 name = "vim-devicons-2018-03-10";
1793 src = fetchgit {
1794 url = "https://github.com/ryanoasis/vim-devicons";
1795 rev = "d9a8fef7e9ffa19516ed42634e9fcd37e9e2cf48";
1796 sha256 = "0vwbjxg0ai627v2mynbklvldxn5dllj3wfhhhlyqgdrn4ls6l5nc";
1797 };
1798 dependencies = [];
1799
1800 };
1801
1802 neoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1803 name = "neoformat-2018-03-03";
1804 src = fetchgit {
1805 url = "https://github.com/sbdchd/neoformat";
1806 rev = "c042511faa57fbe9c0c55ca30c710c1605345cf5";
1807 sha256 = "0rdd4jsk1l7yfbfd7v9z9rb6k0darlms2hxsy602v7j485n4ayd9";
1808 };
1809 dependencies = [];
1810
1811 };
1812
1813 deoplete-rust = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1814 name = "deoplete-rust-2017-07-18";
1815 src = fetchgit {
1816 url = "https://github.com/sebastianmarkow/deoplete-rust";
1817 rev = "0a86e502113910c33448b337c4d50cabea120d25";
1818 sha256 = "0wsck83jns40ny3740vwjhc8g5bh6zl71hkirbjxy6n4xgixa54h";
1819 };
1820 dependencies = [];
1821
1822 };
1823
1824 vim-polyglot = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1825 name = "vim-polyglot-2018-02-06";
1826 src = fetchgit {
1827 url = "https://github.com/sheerun/vim-polyglot";
1828 rev = "96c5c20e418fa95b7137b6ef418946f25de91b1b";
1829 sha256 = "0izqrl6rgfy9rva6qlyib9w3vwdva290cajnyblmxff3gfql1vrj";
1830 };
1831 dependencies = [];
1832
1833 };
1834
1835 context_filetype-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1836 name = "context_filetype-vim-2018-02-06";
1837 src = fetchgit {
1838 url = "https://github.com/shougo/context_filetype.vim";
1839 rev = "514b50f812904f063736cda3c787db7d9b290151";
1840 sha256 = "1xb7lcvriyadrzz93vps9hsa2x8vi8lbwfzk2gm2l3i90mf9xddq";
1841 };
1842 dependencies = [];
1843
1844 };
1845
1846 denite-nvim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1847 name = "denite-nvim-2018-02-28";
1848 src = fetchgit {
1849 url = "https://github.com/shougo/denite.nvim";
1850 rev = "b16579be4431a7eb708deb17d73ec641a8c89a54";
1851 sha256 = "0kabnbqc4j2mgf5m5h0i3yy9pbpk3igrmcwmpq1vs4c4nb1bgkiy";
1852 };
1853 dependencies = [];
1854
1855 };
1856
1857 echodoc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1858 name = "echodoc-vim-2018-02-18";
1859 src = fetchgit {
1860 url = "https://github.com/shougo/echodoc.vim";
1861 rev = "ba85a728a6628fa22f1e4088637a005f21338cd5";
1862 sha256 = "119azfkrplr6a14wypaw27rff332ji1rhnw1lfrzq9nir7kfd4p6";
1863 };
1864 dependencies = [];
1865
1866 };
1867
1868 neco-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1869 name = "neco-syntax-2017-10-01";
1870 src = fetchgit {
1871 url = "https://github.com/shougo/neco-syntax";
1872 rev = "98cba4a98a4f44dcff80216d0b4aa6f41c2ce3e3";
1873 sha256 = "1cjcbgx3h00g91ifgw30q5n97x4nprsr4kwirydws79fcs4vkgip";
1874 };
1875 dependencies = [];
1876
1877 };
1878
1879 neco-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1880 name = "neco-vim-2017-10-01";
1881 src = fetchgit {
1882 url = "https://github.com/shougo/neco-vim";
1883 rev = "f5397c5e800d65a58c56d8f1b1b92686b05f4ca9";
1884 sha256 = "0yb7ja6qgrazszk4i01cwjj00j9vd43zs2r11b08iy8n10jnzr73";
1885 };
1886 dependencies = [];
1887
1888 };
1889
1890 neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1891 name = "neocomplete-vim-2018-01-28";
1892 src = fetchgit {
1893 url = "https://github.com/shougo/neocomplete.vim";
1894 rev = "1401a1c6ab56546c55804ba09e6c9fe87654e954";
1895 sha256 = "01s2cx1cd4j16pb6ixrx9z8h4dsj2dvlxfly2gzm9khpsgsx454h";
1896 };
1897 dependencies = [];
1898
1899 };
1900
1901 neoinclude-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1902 name = "neoinclude-vim-2018-02-12";
1903 src = fetchgit {
1904 url = "https://github.com/shougo/neoinclude.vim";
1905 rev = "b63757822e0c31db04b32f0ca6bab01a560c2498";
1906 sha256 = "1q2pbvl0xspjzwnisnrmv6w9wq289avzz2248hnm0v20rxvy5lwj";
1907 };
1908 dependencies = [];
1909
1910 };
1911
1912 neomru-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1913 name = "neomru-vim-2017-10-01";
1914 src = fetchgit {
1915 url = "https://github.com/shougo/neomru.vim";
1916 rev = "97540f54fa20b94daf306f0c1f3cce983bbf7a1d";
1917 sha256 = "15d5hmh5v3hnjnfb5736n45rh5nyq41vqjp1cz4ls2rxmmfi3xa7";
1918 };
1919 dependencies = [];
1920
1921 };
1922
1923 neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1924 name = "neosnippet-snippets-2018-01-28";
1925 src = fetchgit {
1926 url = "https://github.com/shougo/neosnippet-snippets";
1927 rev = "5902053e0202248f0855d7a2b4f562425447493e";
1928 sha256 = "12a89hlpz0gydl7wpqnanybmrl88r6pqznm0p76y6ir9m460gxw6";
1929 };
1930 dependencies = [];
1931
1932 };
1933
1934 neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1935 name = "neosnippet-vim-2018-02-22";
1936 src = fetchgit {
1937 url = "https://github.com/shougo/neosnippet.vim";
1938 rev = "e38afeab494bbc66be15e181bc96b78df3654a88";
1939 sha256 = "1pm2drwq3hmbibai03pn6qh373kwfqf49npv1gq8d566wfmg0qrq";
1940 };
1941 dependencies = [];
1942
1943 };
1944
1945 neoyank-vim-git = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1946 name = "neoyank-vim-git-2017-12-19";
1947 src = fetchgit {
1948 url = "https://github.com/shougo/neoyank.vim.git";
1949 rev = "5d6e6f80e1920fc38ab5cf779c424a1fdb49202d";
1950 sha256 = "0l2gfwyiyzppb0hs9sx3x7ndq9zzinppzqq3njwjzd1qgfv29jpq";
1951 };
1952 dependencies = [];
1953
1954 };
1955
1956 tabpagebuffer-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1957 name = "tabpagebuffer-vim-2014-09-30";
1958 src = fetchgit {
1959 url = "https://github.com/shougo/tabpagebuffer.vim";
1960 rev = "4d95c3e6fa5ad887498f4cbe486c11e39d4a1fbc";
1961 sha256 = "1z6zlpzkhwy1p2pmx9qrwb91dp9v4yi8jrdvm1if2k79ij4sl08f";
1962 };
1963 dependencies = [];
1964
1965 };
1966
1967 unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1968 name = "unite-vim-2018-01-12";
1969 src = fetchgit {
1970 url = "https://github.com/shougo/unite.vim";
1971 rev = "cc0af4798f91e1c3a4a78ae028a3ac3e61d25eb3";
1972 sha256 = "1vj3bpdyv7wq0xnk9ladacy1giz5x92a62akasbd84bkd79gaxwv";
1973 };
1974 dependencies = [];
1975
1976 };
1977
1978 vimproc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1979 name = "vimproc-vim-2018-01-07";
1980 src = fetchgit {
1981 url = "https://github.com/shougo/vimproc.vim";
1982 rev = "2300224d366642f4f8d6f88861535d4ccbe20143";
1983 sha256 = "0b8ljqnix8bs667bpymg3s0g5f49fnphgddl6196dj6jvdfn1xia";
1984 };
1985 dependencies = [];
1986 buildInputs = [ which ];
1987
1988 buildPhase = ''
1989 substituteInPlace autoload/vimproc.vim \
1990 --replace vimproc_mac.so vimproc_unix.so \
1991 --replace vimproc_linux64.so vimproc_unix.so \
1992 --replace vimproc_linux32.so vimproc_unix.so
1993 make -f make_unix.mak
1994 '';
1995 };
1996
1997 vimshell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1998 name = "vimshell-vim-2016-12-14";
1999 src = fetchgit {
2000 url = "https://github.com/shougo/vimshell.vim";
2001 rev = "d0c5bef010237855b4de25863bc54895effe5d7a";
2002 sha256 = "13szswi1n04w66c4h701y47xblrba8ysxjwvmnfxb0pyd1x3gzgz";
2003 };
2004 dependencies = [ "vimproc-vim" ];
2005 };
2006
2007 gundo-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2008 name = "gundo-vim-2017-05-09";
2009 src = fetchgit {
2010 url = "https://github.com/sjl/gundo.vim";
2011 rev = "46c443ee9d5854320eb965a1fdee781ba83a070e";
2012 sha256 = "0adk7agzmbfv342zw6lc8jad6yjs1wap4c0ca98s0qm2bs0r1hl2";
2013 };
2014 dependencies = [];
2015
2016 };
2017
2018 alchemist-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2019 name = "alchemist-vim-2018-02-03";
2020 src = fetchgit {
2021 url = "https://github.com/slashmili/alchemist.vim";
2022 rev = "1bc6ac4405f0b7bbf5dd963313f103f1416f27cb";
2023 sha256 = "0ff83xknlkb2rdhvpp75nclilb4mlmkr86lp9jwb52dc0a6l2g8i";
2024 };
2025 dependencies = [];
2026
2027 };
2028
2029 vim-smalls = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2030 name = "vim-smalls-2015-05-02";
2031 src = fetchgit {
2032 url = "https://github.com/t9md/vim-smalls";
2033 rev = "9619eae81626bd63f88165e0520c467698264e34";
2034 sha256 = "0s5z3zv220cg95yky2av6w0jmpc56ysyhsx0596ksvgz5jwhpbad";
2035 };
2036 dependencies = [];
2037
2038 };
2039
2040 vim-hardtime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2041 name = "vim-hardtime-2017-03-31";
2042 src = fetchgit {
2043 url = "https://github.com/takac/vim-hardtime";
2044 rev = "d9128568afa62947b7ac8f12c22d88e3de526a6b";
2045 sha256 = "097wzfh4n4fnsq2gx4hbmyr731ciky8qcai5aiyh2baybvwshmr5";
2046 };
2047 dependencies = [];
2048
2049 };
2050
2051 vim-expand-region = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2052 name = "vim-expand-region-2013-08-19";
2053 src = fetchgit {
2054 url = "https://github.com/terryma/vim-expand-region";
2055 rev = "966513543de0ddc2d673b5528a056269e7917276";
2056 sha256 = "0l30wjlk4vxr16f1njnvf8aw9yg9p9jisvcxbcg3znsq5q8ix6zv";
2057 };
2058 dependencies = [];
2059
2060 };
2061
2062 vimpreviewpandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2063 name = "vimpreviewpandoc-2016-03-07";
2064 src = fetchgit {
2065 url = "https://github.com/tex/vimpreviewpandoc";
2066 rev = "b109d41ad6478df5ec7f1311950c6efca66f36e4";
2067 sha256 = "1gx326xarjs3qjygpkrknncad90crjqfx8v6pir4r7k1hl7dfxc4";
2068 };
2069 dependencies = [];
2070
2071 };
2072
2073 vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2074 name = "vim-quickrun-2018-02-21";
2075 src = fetchgit {
2076 url = "https://github.com/thinca/vim-quickrun";
2077 rev = "8d864e7feb7ac9dded84808f76fcb3fcd3ed8ae3";
2078 sha256 = "0m2l1ajgagryaff3gaw91930y5p5ni1s2s4gnahwvqyiq3jdxaxh";
2079 };
2080 dependencies = [];
2081
2082 };
2083
2084 vim-themis = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2085 name = "vim-themis-2017-12-28";
2086 src = fetchgit {
2087 url = "https://github.com/thinca/vim-themis";
2088 rev = "691cd3912ba318dbd8d9fa0035fee629b424766d";
2089 sha256 = "1mrdaah3iyg35v6cgvr3jav3386czialfcinwa3y9jy14basbqhd";
2090 };
2091 dependencies = [];
2092
2093 };
2094
2095 molokai = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2096 name = "molokai-2015-11-11";
2097 src = fetchgit {
2098 url = "https://github.com/tomasr/molokai";
2099 rev = "c67bdfcdb31415aa0ade7f8c003261700a885476";
2100 sha256 = "1piszjr5kyw43ac1f0jh9z88g824xknshrkchbys9qxlz7pd831s";
2101 };
2102 dependencies = [];
2103
2104 };
2105
2106 vim-dispatch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2107 name = "vim-dispatch-2018-03-02";
2108 src = fetchgit {
2109 url = "https://github.com/tpope/vim-dispatch";
2110 rev = "e83ac42fefa4bcf2b4197bec2b4d917e15225815";
2111 sha256 = "1mkhygh5pgp9z6gn2chn8kvj6fgfvg9gnym9icfdlm0hl2ldig1w";
2112 };
2113 dependencies = [];
2114
2115 };
2116
2117 vim-eunuch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2118 name = "vim-eunuch-2018-02-18";
2119 src = fetchgit {
2120 url = "https://github.com/tpope/vim-eunuch";
2121 rev = "b62f7d4d4dcb6bdb840441c11435aa4361ec0454";
2122 sha256 = "0h6q4jjqb9b0cdbg0ymm5kfw1a2b4m83fqdfw61637rd6i0ganks";
2123 };
2124 dependencies = [];
2125
2126 };
2127
2128 vim-repeat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2129 name = "vim-repeat-2018-01-30";
2130 src = fetchgit {
2131 url = "https://github.com/tpope/vim-repeat";
2132 rev = "8106e142dfdc278ff3eaaadd7b362ad7949d4357";
2133 sha256 = "1q0bmqxi1kqxq7g8l0qj7y93g9rqffwc3fbmhpj3chx2kswhd5hc";
2134 };
2135 dependencies = [];
2136
2137 };
2138
2139 vim-rhubarb = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2140 name = "vim-rhubarb-2017-06-28";
2141 src = fetchgit {
2142 url = "https://github.com/tpope/vim-rhubarb";
2143 rev = "6caad2b61afcc1b7c476b0ae3dea9ee5f2b1d14a";
2144 sha256 = "1bmc5j9056bgdhyhvylbd93jkp1k9067mv3af6skzh0r77rx1a0g";
2145 };
2146 dependencies = [];
2147
2148 };
2149
2150 vim-speeddating = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2151 name = "vim-speeddating-2017-05-24";
2152 src = fetchgit {
2153 url = "https://github.com/tpope/vim-speeddating";
2154 rev = "a418667791f03694065948342f2d6c5cca8d0f32";
2155 sha256 = "1wm33izawazh0dy70zjk6rkg30yrlldba5r1gypnr4barps702gw";
2156 };
2157 dependencies = [];
2158
2159 };
2160
2161 hasksyn = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2162 name = "hasksyn-2014-09-03";
2163 src = fetchgit {
2164 url = "https://github.com/travitch/hasksyn";
2165 rev = "c434040bf13a17ca20a551223021b3ace7e453b9";
2166 sha256 = "09998lnfcshqis5m062wlag6y476imq9jday9gp4ayjjl1cp3cwx";
2167 };
2168 dependencies = [];
2169
2170 };
2171
2172 vim-haskellconceal = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2173 name = "vim-haskellconceal-2017-06-15";
2174 src = fetchgit {
2175 url = "https://github.com/twinside/vim-haskellconceal";
2176 rev = "802f82a5afee56e9e1251e6f756104a3bd114234";
2177 sha256 = "1kh6853hi4rgl4z1xs8kz9l1q9w7lh0r42y2m0rabfpr6yh3091r";
2178 };
2179 dependencies = [];
2180
2181 };
2182
2183 open-browser-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2184 name = "open-browser-vim-2018-03-11";
2185 src = fetchgit {
2186 url = "https://github.com/tyru/open-browser.vim";
2187 rev = "43b08d6642f26af5a875b0d0bdb3aa9a6d12e7eb";
2188 sha256 = "162dv172n16jpjr812d561yyj9rz9xn4qrfx18wlpyixj3qf2bda";
2189 };
2190 dependencies = [];
2191
2192 };
2193
2194 youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2195 name = "youcompleteme-2018-03-09";
2196 src = fetchgit {
2197 url = "https://github.com/valloric/youcompleteme";
2198 rev = "3a760212cb306655780a2c3be6412890ba5cf89b";
2199 sha256 = "0q0gjlsb0l3k7a1fiz4lqa75r146y4myr42kwri0rm8y4fgpbc12";
2200 };
2201 dependencies = [];
2202 buildPhase = ''
2203 substituteInPlace plugin/youcompleteme.vim \
2204 --replace "'ycm_path_to_python_interpreter', '''" \
2205 "'ycm_path_to_python_interpreter', '${python}/bin/python'"
2206
2207 rm -r third_party/ycmd
2208 ln -s ${ycmd}/lib/ycmd third_party
2209 '';
2210
2211 meta = {
2212 description = "Fastest non utf-8 aware word and C completion engine for Vim";
2213 homepage = http://github.com/Valloric/YouCompleteMe;
2214 license = stdenv.lib.licenses.gpl3;
2215 maintainers = with stdenv.lib.maintainers; [marcweber jagajaga];
2216 platforms = stdenv.lib.platforms.unix;
2217 };
2218 };
2219
2220 vim-airline-themes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2221 name = "vim-airline-themes-2018-01-05";
2222 src = fetchgit {
2223 url = "https://github.com/vim-airline/vim-airline-themes";
2224 rev = "4b7f77e770a2165726072a2b6f109f2457783080";
2225 sha256 = "02wbch9mbj0slafd5jrklmyawrxpisf8c3f5c72gq30j8hlyb86n";
2226 };
2227 dependencies = [];
2228
2229 };
2230
2231 vim-pandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2232 name = "vim-pandoc-2018-01-11";
2233 src = fetchgit {
2234 url = "https://github.com/vim-pandoc/vim-pandoc";
2235 rev = "3a686781ab5ea622616798475deb394e48d3cc48";
2236 sha256 = "1nvz8v52jydkvnlid5w8dkjmr548ryla2vaxnlgj125aamkvmgn3";
2237 };
2238 dependencies = [];
2239
2240 };
2241
2242 vim-pandoc-after = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2243 name = "vim-pandoc-after-2017-11-22";
2244 src = fetchgit {
2245 url = "https://github.com/vim-pandoc/vim-pandoc-after";
2246 rev = "844f27debf4d72811049167f97191a3b551ddfd5";
2247 sha256 = "0i99g9lnk1xzarw3vzbc47i4bg4iybaywkjvd2krln4q426a6saf";
2248 };
2249 dependencies = [];
2250
2251 };
2252
2253 vim-pandoc-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2254 name = "vim-pandoc-syntax-2017-04-13";
2255 src = fetchgit {
2256 url = "https://github.com/vim-pandoc/vim-pandoc-syntax";
2257 rev = "56e8e41ef863a0a7d33d85c3c0c895aa6e9e62d3";
2258 sha256 = "19ll4zrw5yd0frgsbi7pg9b68lmy4bfiwbnwgzii7inifrqsykfw";
2259 };
2260 dependencies = [];
2261
2262 };
2263
2264 Colour-Sampler-Pack = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2265 name = "Colour-Sampler-Pack-2012-11-29";
2266 src = fetchgit {
2267 url = "https://github.com/vim-scripts/Colour-Sampler-Pack";
2268 rev = "05cded87b2ef29aaa9e930230bb88e23abff4441";
2269 sha256 = "03v2r18sfgs0xbgy9p56pxfdg0lsk6m7wyr5hw63wm1nzpwiipg3";
2270 };
2271 dependencies = [];
2272
2273 };
2274
2275 Improved-AnsiEsc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2276 name = "Improved-AnsiEsc-2015-08-25";
2277 src = fetchgit {
2278 url = "https://github.com/vim-scripts/Improved-AnsiEsc";
2279 rev = "e1c59a8e9203fab6b9150721f30548916da73351";
2280 sha256 = "1smjs4kz2kmzprzp9az4957675nakb43146hshbby39j5xz4jsbz";
2281 };
2282 dependencies = [];
2283
2284 };
2285
2286 Rename = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2287 name = "Rename-2011-08-30";
2288 src = fetchgit {
2289 url = "https://github.com/vim-scripts/Rename";
2290 rev = "b240f28d2ede65fa77cd99fe045efe79202f7a34";
2291 sha256 = "1d1myg4zyc281zcc1ba9idbgcgxndb4a0jwqr4yqxhhzdgszw46r";
2292 };
2293 dependencies = [];
2294
2295 };
2296
2297 ReplaceWithRegister = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2298 name = "ReplaceWithRegister-2014-10-30";
2299 src = fetchgit {
2300 url = "https://github.com/vim-scripts/ReplaceWithRegister";
2301 rev = "832efc23111d19591d495dc72286de2fb0b09345";
2302 sha256 = "0mb0sx85j1k59b1zz95r4vkq4kxlb4krhncq70mq7fxrs5bnhq8g";
2303 };
2304 dependencies = [];
2305
2306 };
2307
2308 a-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2309 name = "a-vim-2010-11-06";
2310 src = fetchgit {
2311 url = "https://github.com/vim-scripts/a.vim";
2312 rev = "2cbe946206ec622d9d8cf2c99317f204c4d41885";
2313 sha256 = "0h62v9z5bh9xmaq22pqdb3z79i84a5rknqm68mjpy7nq7s3q42fa";
2314 };
2315 dependencies = [];
2316
2317 };
2318
2319 align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2320 name = "align-2012-08-07";
2321 src = fetchgit {
2322 url = "https://github.com/vim-scripts/align";
2323 rev = "787662fe90cd057942bc5b682fd70c87e1a9dd77";
2324 sha256 = "0acacr572kfh7jvavbw61q5pkwrpi1albgancma063rpax1pddgp";
2325 };
2326 dependencies = [];
2327
2328 };
2329
2330 argtextobj-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2331 name = "argtextobj-vim-2010-10-17";
2332 src = fetchgit {
2333 url = "https://github.com/vim-scripts/argtextobj.vim";
2334 rev = "f3fbe427f7b4ec436416a5816d714dc917dc530b";
2335 sha256 = "1l4jh5hdmky1qj5z26jpnk49a6djjcvzyyr6pknrrgb8rzkiln48";
2336 };
2337 dependencies = [];
2338
2339 };
2340
2341 bats-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2342 name = "bats-vim-2013-07-03";
2343 src = fetchgit {
2344 url = "https://github.com/vim-scripts/bats.vim";
2345 rev = "3c283f594ff8bc7fb0c25cd07ebef0f17385f94a";
2346 sha256 = "06f3hdf7y5gpwmc6inrhk938qmn7cr6mbk00amrnl1qjvk09givx";
2347 };
2348 dependencies = [];
2349
2350 };
2351
2352 changeColorScheme-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2353 name = "changeColorScheme-vim-2010-10-17";
2354 src = fetchgit {
2355 url = "https://github.com/vim-scripts/changeColorScheme.vim";
2356 rev = "b041d49f828629d72f2232531a230d1ec5de2405";
2357 sha256 = "0pybhsg9k9252d4ifdc4gsar8lkmfzbvs6xkzqq1m6f35l9wqk09";
2358 };
2359 dependencies = [];
2360
2361 };
2362
2363 mayansmoke-git = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2364 name = "mayansmoke-git-2010-10-17";
2365 src = fetchgit {
2366 url = "https://github.com/vim-scripts/mayansmoke.git";
2367 rev = "168883af7aec05f139af251f47eadd5dfb802c9d";
2368 sha256 = "1xxcky7i6sx7f1q8xka4gd2xg78w6sqjvqrdwgrdzv93fhf82rpd";
2369 };
2370 dependencies = [];
2371
2372 };
2373
2374 random-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2375 name = "random-vim-2010-10-17";
2376 src = fetchgit {
2377 url = "https://github.com/vim-scripts/random.vim";
2378 rev = "b2d85eb24a38074eab37a5acf2a295e1f2ad8989";
2379 sha256 = "1lzy2cq4jcrsqyxlnbnd0y6j4mabm09bi7q22lf6vinqlb84w7sp";
2380 };
2381 dependencies = [];
2382
2383 };
2384
2385 tabmerge = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2386 name = "tabmerge-2010-10-17";
2387 src = fetchgit {
2388 url = "https://github.com/vim-scripts/tabmerge";
2389 rev = "074e5f06f26e7108a0570071a0f938a821768c06";
2390 sha256 = "0prkyza1n49cdaslcr57w8zv15vw78mlqbzib2xipmawzjq02idq";
2391 };
2392 dependencies = [];
2393
2394 };
2395
2396 wombat256-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2397 name = "wombat256-vim-2010-10-17";
2398 src = fetchgit {
2399 url = "https://github.com/vim-scripts/wombat256.vim";
2400 rev = "8734ba45dcf5e38c4d2686b35c94f9fcb30427e2";
2401 sha256 = "01fdvfwdfqn5xi88lfanb4lb6jmn1ma6wq6d9jj2x7qamdbpvsrg";
2402 };
2403 dependencies = [];
2404
2405 };
2406
2407 ale = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2408 name = "ale-2018-03-10";
2409 src = fetchgit {
2410 url = "https://github.com/w0rp/ale";
2411 rev = "05d39bc1a9eb79ff6f36b190b4612ff052812e7e";
2412 sha256 = "0p8pllh93bd43051rjcw9jamkmldb0rc3x8llw010m05jgrkngda";
2413 };
2414 dependencies = [];
2415
2416 };
2417
2418 vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2419 name = "vim-wakatime-2018-01-28";
2420 src = fetchgit {
2421 url = "https://github.com/wakatime/vim-wakatime";
2422 rev = "dadf0bc9697a3eea043190e9ccfe4fb2e53a20ca";
2423 sha256 = "0fimkkkxii0g12xfbq8vs0i50ffincsbpz96x55q0j7gnlxbhwfr";
2424 };
2425 dependencies = [];
2426 buildInputs = [ python ];
2427 };
2428
2429 targets-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2430 name = "targets-vim-2018-02-28";
2431 src = fetchgit {
2432 url = "https://github.com/wellle/targets.vim";
2433 rev = "c1732189c9ec29cc3320094304019ffcafadafc4";
2434 sha256 = "12ryicmb29qhmn216xdv9g8rl170mz5zrbfnmqja3wdlwkj3g83j";
2435 };
2436 dependencies = [];
2437
2438 };
2439
2440 vim-dirdiff = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2441 name = "vim-dirdiff-2018-01-30";
2442 src = fetchgit {
2443 url = "https://github.com/will133/vim-dirdiff";
2444 rev = "b5a3d59bfbeb5cef7dbadbe69c455b470988b58c";
2445 sha256 = "16hc88k00xa757k0h53r1sbqwxdxdy0118yl2vsigd6rqk474nw1";
2446 };
2447 dependencies = [];
2448
2449 };
2450
2451 command-t = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2452 name = "command-t-2017-11-16";
2453 src = fetchgit {
2454 url = "https://github.com/wincent/command-t";
2455 rev = "7147ba92c9c1eef8269fd47d47ba636ce7f365a6";
2456 sha256 = "171z1jjjv1l15rh3i2hc400vjf4zns8sjvda0vcjkx2717ax658r";
2457 };
2458 dependencies = [];
2459 buildInputs = [ ruby rake ];
2460 buildPhase = ''
2461 rake make
2462 rm ruby/command-t/ext/command-t/*.o
2463 '';
2464 };
2465
2466 vim-easytags = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2467 name = "vim-easytags-2015-07-01";
2468 src = fetchgit {
2469 url = "https://github.com/xolox/vim-easytags";
2470 rev = "72a8753b5d0a951e547c51b13633f680a95b5483";
2471 sha256 = "0i8ha1fa5d860b1mi0xp8kwsgb0b9vbzcg1bldzv6s5xd9yyi12i";
2472 };
2473 dependencies = ["vim-misc"];
2474
2475 };
2476
2477 vim-misc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2478 name = "vim-misc-2015-05-21";
2479 src = fetchgit {
2480 url = "https://github.com/xolox/vim-misc";
2481 rev = "3e6b8fb6f03f13434543ce1f5d24f6a5d3f34f0b";
2482 sha256 = "0rd9788dyfc58py50xbiaz5j7nphyvf3rpp3yal7yq2dhf0awwfi";
2483 };
2484 dependencies = [];
2485
2486 };
2487
2488 nim-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2489 name = "nim-vim-2018-02-27";
2490 src = fetchgit {
2491 url = "https://github.com/zah/nim.vim";
2492 rev = "bdc19809d22190d9b8e85377252a24d930cd25f8";
2493 sha256 = "08abwnzim767jvin6jsp2a580hpxzb2w5hbf8w5dhkvxv2pgk0vz";
2494 };
2495 dependencies = [];
2496
2497 };
2498
2499 deoplete-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2500 name = "deoplete-go-2018-02-04";
2501 src = fetchgit {
2502 url = "https://github.com/zchee/deoplete-go";
2503 rev = "513ae17f1bd33954da80059a21c128a315726a81";
2504 sha256 = "0rfxzryccrq3dnjgb9aljzrmfjk7p8l2qdjkl8ar4bh2hmz8vn5y";
2505 };
2506 dependencies = [];
2507 buildInputs = [ python3 ];
2508 buildPhase = ''
2509 pushd ./rplugin/python3/deoplete/ujson
2510 python3 setup.py build --build-base=$PWD/build --build-lib=$PWD/build
2511 popd
2512 find ./rplugin/ -name "ujson*.so" -exec mv -v {} ./rplugin/python3/ \;
2513 '';
2514 };
2515
2516 deoplete-jedi = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2517 name = "deoplete-jedi-2018-02-25";
2518 src = fetchgit {
2519 url = "https://github.com/zchee/deoplete-jedi";
2520 rev = "0410de74239b79d9fc21fe1076e46a97aa0d44cc";
2521 sha256 = "0bp4d5q5y72bhmrwcczz6g1z53n372qydbsxjl7r2amaiy0l3yl0";
2522 };
2523 dependencies = [];
2524
2525 };
2526
2527 zig-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2528 name = "zig-vim-2018-02-28";
2529 src = fetchgit {
2530 url = "https://github.com/zig-lang/zig.vim";
2531 rev = "1ce1b03ace88c447733cd5f398f09ff1d83d6831";
2532 sha256 = "0y96dwfh1291gn7ia749nc8r03ndq7f29lgqag4dcs59x0pk4f5w";
2533 };
2534 dependencies = [];
2535
2536 };
2537
2538 goyo = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2539 name = "goyo-2017-06-01";
2540 src = fetchgit {
2541 url = "git://github.com/junegunn/goyo.vim";
2542 rev = "5b8bd0378758c1d9550d8429bef24b3d6d78b592";
2543 sha256 = "0jh2gyf6v1vl12hygzwylzsj1ivx7r6xrd75k2wfsy91b2pm9srj";
2544 };
2545 dependencies = [];
2546
2547 };
2548
2549 gruvbox = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2550 name = "gruvbox-2018-02-25";
2551 src = fetchgit {
2552 url = "git://github.com/morhetz/gruvbox";
2553 rev = "cb4e7a5643f7d2dd40e694bcbd28c4b89b185e86";
2554 sha256 = "12qkq1x96bm1cmqfg6sb8jxpl2b6gwvhc5qn3gva6vl4nx3ianqi";
2555 };
2556 dependencies = [];
2557
2558 };
2559
2560 maktaba = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2561 name = "maktaba-2017-12-29";
2562 src = fetchgit {
2563 url = "git://github.com/google/vim-maktaba";
2564 rev = "6e3be879bcf2d4e3c5bb56653e5eda9e08b84982";
2565 sha256 = "1nbpn6pcphrakd4icl24l4a68hjcq4a0aaq6kdwrvlsd1c3lk4dm";
2566 };
2567 dependencies = [];
2568
2569 };
2570
2571 matchit-zip = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2572 name = "matchit-zip";
2573 src = fetchurl {
2574 url = "http://www.vim.org/scripts/download_script.php?src_id=8196";
2575 name = "matchit.zip";
2576 sha256 = "1bbm8j1bhb70kagwdimwy9vcvlrz9ax5bk2a7wrmn4cy87f9xj4l";
2577 };
2578 buildInputs = [ unzip ];
2579 dependencies = [];
2580 meta = {
2581 homepage = "http://www.vim.org/scripts/script.php?script_id=39";
2582 };
2583
2584 unpackPhase = ''
2585 (
2586 sourceRoot=d
2587 mkdir $sourceRoot; cd $sourceRoot;
2588 unzip $src
2589 )
2590 '';
2591 };
2592
2593 neco-look = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2594 name = "neco-look-2018-01-21";
2595 src = fetchgit {
2596 url = "git://github.com/ujihisa/neco-look";
2597 rev = "4ead88e70f359fb9cef6537ed9c336b7673c1b4c";
2598 sha256 = "1lszbif7ymdjch1ypnr1nihs6gfbhb86sj6nz3dwrbgsl454nnrj";
2599 };
2600 dependencies = [];
2601
2602 };
2603
2604 pathogen = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2605 name = "pathogen-2017-08-04";
2606 src = fetchgit {
2607 url = "git://github.com/tpope/vim-pathogen";
2608 rev = "e7857bed4e0705f91f781dbe99706f07d08d104b";
2609 sha256 = "15s08q1chrdywj7fdiwzygxywg4cpcbvk5r1r8zvw6d82kyhadw1";
2610 };
2611 dependencies = [];
2612
2613 };
2614
2615 prettyprint = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2616 name = "prettyprint-2016-07-16";
2617 src = fetchgit {
2618 url = "git://github.com/thinca/vim-prettyprint";
2619 rev = "d6060d2b1ff1cff71714e126addd3b10883ade12";
2620 sha256 = "0mb1ylsq4023ik9wd9iwzlynra2c320xp9h2i79bspapglgd5gk9";
2621 };
2622 dependencies = [];
2623
2624 };
2625
2626 quickfixstatus = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2627 name = "quickfixstatus-2011-09-02";
2628 src = fetchgit {
2629 url = "git://github.com/dannyob/quickfixstatus";
2630 rev = "fd3875b914fc51bbefefa8c4995588c088163053";
2631 sha256 = "16vxhvyxq51y7wnx0c1fmdi2yb6kfr1pxijq65gxj8qwvbak2s3v";
2632 };
2633 dependencies = [];
2634
2635 };
2636
2637 rainbow_parentheses = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2638 name = "rainbow_parentheses-2013-03-04";
2639 src = fetchgit {
2640 url = "git://github.com/kien/rainbow_parentheses.vim";
2641 rev = "eb8baa5428bde10ecc1cb14eed1d6e16f5f24695";
2642 sha256 = "1qw84imlhq4654mxazj7j3sp5g1j3yjxi496i08iix06dm15m5s7";
2643 };
2644 dependencies = [];
2645
2646 };
2647
2648 riv = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2649 name = "riv-2018-01-21";
2650 src = fetchgit {
2651 url = "git://github.com/Rykka/riv.vim";
2652 rev = "454fef3402c8b8b2c2036232a9e9b798f5e35d09";
2653 sha256 = "1n5m4y03bfabhr6inmgwhwc4ayaafavsrqagklzjwfx1cv3r9f2j";
2654 };
2655 dependencies = [];
2656
2657 };
2658
2659 sensible = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2660 name = "sensible-2018-01-22";
2661 src = fetchgit {
2662 url = "git://github.com/tpope/vim-sensible";
2663 rev = "2d60332fa5b2b1ea346864245569df426052865a";
2664 sha256 = "1psv8r3xshcg5c09i8h2qff6jp62anjmsa24qzvbc71ass5bqxyb";
2665 };
2666 dependencies = [];
2667
2668 };
2669
2670 sleuth = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2671 name = "sleuth-2017-10-24";
2672 src = fetchgit {
2673 url = "git://github.com/tpope/vim-sleuth";
2674 rev = "d56a4302358359ddf9845252addf637a5e6bd6d5";
2675 sha256 = "1klp2lqsql90v156kih0mnm0j957pc4r0zy5y6srww2q3wkkjgr2";
2676 };
2677 dependencies = [];
2678
2679 };
2680
2681 snipmate = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2682 name = "snipmate-2017-04-20";
2683 src = fetchgit {
2684 url = "git://github.com/garbas/vim-snipmate";
2685 rev = "a9802f2351910f64b70fb10b63651e6ff6b8125e";
2686 sha256 = "1l7sc6lf66pkiy18aq9s3wk1dmvvvsy1063cc0bxich9xa8m34bj";
2687 };
2688 dependencies = ["vim-addon-mw-utils" "tlib"];
2689
2690 };
2691
2692 sourcemap = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2693 name = "sourcemap-2012-09-19";
2694 src = fetchgit {
2695 url = "git://github.com/chikatoike/sourcemap.vim";
2696 rev = "0dd82d40faea2fdb0771067f46c01deb41610ba1";
2697 sha256 = "1gcgnynallz420911fdfm0ccbv3zs78p69nnh2ls1r4vlfp7g350";
2698 };
2699 dependencies = [];
2700
2701 };
2702
2703 sparkup = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2704 name = "sparkup-2012-06-10";
2705 src = fetchgit {
2706 url = "git://github.com/chrisgeo/sparkup";
2707 rev = "6fbfceef890e705c47b42b27be743ffed6f9296e";
2708 sha256 = "17jgpvl879ik53rr3razfnbpfx63mzpp1rlvxxjsvvrk4g45dssm";
2709 };
2710 dependencies = [];
2711
2712 };
2713
2714 surround = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2715 name = "surround-2016-06-01";
2716 src = fetchgit {
2717 url = "git://github.com/tpope/vim-surround";
2718 rev = "e49d6c2459e0f5569ff2d533b4df995dd7f98313";
2719 sha256 = "1v0q2f1n8ngbja3wpjvqp2jh89pb5ij731qmm18k41nhgz6hhm46";
2720 };
2721 dependencies = [];
2722
2723 };
2724
2725 table-mode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2726 name = "table-mode-2018-02-13";
2727 src = fetchgit {
2728 url = "git://github.com/dhruvasagar/vim-table-mode";
2729 rev = "c35fd9b104fb75017f3866a28a77cf38f61b7801";
2730 sha256 = "0l52ipl7a1g3js6lfig4xjw17nmmjvpv7gsrpn166kwgrxgis802";
2731 };
2732 dependencies = [];
2733
2734 };
2735
2736 tabpagecd = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2737 name = "tabpagecd-2013-11-29";
2738 src = fetchgit {
2739 url = "git://github.com/kana/vim-tabpagecd";
2740 rev = "8b71a03a037608fa5918f5096812577cec6355e4";
2741 sha256 = "1mr6s2hvsf2a2nkjjvq78c9isfxk2k1ih890w740srbq6ssj0npm";
2742 };
2743 dependencies = [];
2744
2745 };
2746
2747 taglist = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2748 name = "taglist";
2749 src = fetchurl {
2750 url = "http://www.vim.org/scripts/download_script.php?src_id=19574";
2751 name = "taglist_46.zip";
2752 sha256 = "18cbv462vwg7vip2p99qlahm99hswav96cj4ki227kyi05q2lkjj";
2753 };
2754 buildInputs = [ unzip ];
2755 dependencies = [];
2756 meta = {
2757 homepage = "http://www.vim.org/scripts/script.php?script_id=273";
2758 };
2759
2760 setSourceRoot = ''
2761 export sourceRoot=taglist
2762 mkdir taglist
2763 mv doc taglist
2764 mv plugin taglist
2765 '';
2766 };
2767
2768 tlib = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2769 name = "tlib-2017-08-13";
2770 src = fetchgit {
2771 url = "git://github.com/tomtom/tlib_vim";
2772 rev = "c96db6151fde9d06a8fed71b7df05c6dbb3f14fe";
2773 sha256 = "1dhvf1v2mkmq8aifwq57ylm7nnk3zz3hna33q2gj6p7v70vay7v8";
2774 };
2775 dependencies = [];
2776
2777 };
2778
2779 undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2780 name = "undotree-2017-10-26";
2781 src = fetchgit {
2782 url = "git://github.com/mbbill/undotree";
2783 rev = "cdbb9022b8972d3e156b8d60af33bf795625b058";
2784 sha256 = "0y62hp8k2kbrq0jhxj850f706rqjv2dkd7dxhz458mrsdk60f253";
2785 };
2786 dependencies = [];
2787
2788 };
2789
2790 vim-addon-actions = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2791 name = "vim-addon-actions-2018-01-18";
2792 src = fetchgit {
2793 url = "git://github.com/MarcWeber/vim-addon-actions";
2794 rev = "540cae09832ba6abf9fc63c55781bf86584c33ac";
2795 sha256 = "011w5k09i01r9x64j20qj0f7d057m9wki2m8l2wds47l57hr3vz6";
2796 };
2797 dependencies = ["vim-addon-mw-utils" "tlib"];
2798
2799 };
2800
2801 vim-addon-async = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2802 name = "vim-addon-async-2017-03-20";
2803 src = fetchgit {
2804 url = "git://github.com/MarcWeber/vim-addon-async";
2805 rev = "eca316a4480f68c2cb62128f3187dc7b2002afde";
2806 sha256 = "1lk8ma51dd0syi73vq5r4qk9cpy6cq3llizvh94hmxblfjpvrs7q";
2807 };
2808 dependencies = ["vim-addon-signs"];
2809
2810 };
2811
2812 vim-addon-background-cmd = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2813 name = "vim-addon-background-cmd-2015-12-11";
2814 src = fetchgit {
2815 url = "git://github.com/MarcWeber/vim-addon-background-cmd";
2816 rev = "abf2abf339652d2bc79da81f9d131edfe2755f5a";
2817 sha256 = "0csy68x686l3x5ancidxb5b6prg9k7ikybqzq3klx0gs5rmksfy4";
2818 };
2819 dependencies = ["vim-addon-mw-utils"];
2820
2821 };
2822
2823 vim-addon-commenting = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2824 name = "vim-addon-commenting-2013-06-10";
2825 src = fetchgit {
2826 url = "git://github.com/MarcWeber/vim-addon-commenting";
2827 rev = "b7cf748ac1c9bf555cbd347589e3b7196030d20b";
2828 sha256 = "0alak8h33vada2ckb0v06y82qlib5mhyc2yswlv1rqh8ypzhq3mc";
2829 };
2830 dependencies = [];
2831
2832 };
2833
2834 vim-addon-completion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2835 name = "vim-addon-completion-2015-02-10";
2836 src = fetchgit {
2837 url = "git://github.com/MarcWeber/vim-addon-completion";
2838 rev = "021c449a5ce1ce4ac0af5955e05b0279c1cc0e75";
2839 sha256 = "1ld059y2qwlc5bdfjm2p314s1qh31lxs54g944pw49r46s5nlslr";
2840 };
2841 dependencies = ["tlib"];
2842
2843 };
2844
2845 vim-addon-errorformats = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2846 name = "vim-addon-errorformats-2014-11-05";
2847 src = fetchgit {
2848 url = "git://github.com/MarcWeber/vim-addon-errorformats";
2849 rev = "dcbb203ad5f56e47e75fdee35bc92e2ba69e1d28";
2850 sha256 = "159zqm69fxbxcv3b2y99g57bf20qrzsijcvb5rzy2njxah3049m1";
2851 };
2852 dependencies = [];
2853
2854 };
2855
2856 vim-addon-goto-thing-at-cursor = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2857 name = "vim-addon-goto-thing-at-cursor-2012-01-11";
2858 src = fetchgit {
2859 url = "git://github.com/MarcWeber/vim-addon-goto-thing-at-cursor";
2860 rev = "f052e094bdb351829bf72ae3435af9042e09a6e4";
2861 sha256 = "1ksm2b0j80zn8sz2y227bpcx4jsv76lwgr2gpgy2drlyqhn2vlv0";
2862 };
2863 dependencies = ["tlib"];
2864
2865 };
2866
2867 vim-addon-local-vimrc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2868 name = "vim-addon-local-vimrc-2015-03-19";
2869 src = fetchgit {
2870 url = "git://github.com/MarcWeber/vim-addon-local-vimrc";
2871 rev = "6a27f95b35befa70cd0d049329cd0920566c764b";
2872 sha256 = "0n8lwl1gyak149p7jpgm0qbmfj8hcg8hirx3dxdhizw0yc47ws7h";
2873 };
2874 dependencies = [];
2875
2876 };
2877
2878 vim-addon-manager = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2879 name = "vim-addon-manager-2017-05-07";
2880 src = fetchgit {
2881 url = "git://github.com/MarcWeber/vim-addon-manager";
2882 rev = "2434225ae48e608c2b6ac86c8da1c62209da746f";
2883 sha256 = "1fczkd05gir994614qmgscx131isr71bn0rwa6n3vgdbnhasz6bb";
2884 };
2885 dependencies = [];
2886 buildInputs = stdenv.lib.optional stdenv.isDarwin Cocoa;
2887 };
2888
2889 vim-addon-mru = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2890 name = "vim-addon-mru-2013-08-08";
2891 src = fetchgit {
2892 url = "git://github.com/MarcWeber/vim-addon-mru";
2893 rev = "e41e39bd9d1bf78ccfd8d5e1bc05ae5e1026c2bb";
2894 sha256 = "0q6rxr9nrp63kidr3m3c2z5sda4g813pzshg0scxkjr8dxwhzdqm";
2895 };
2896 dependencies = ["vim-addon-other" "vim-addon-mw-utils"];
2897
2898 };
2899
2900 vim-addon-mw-utils = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2901 name = "vim-addon-mw-utils-2018-03-09";
2902 src = fetchgit {
2903 url = "git://github.com/MarcWeber/vim-addon-mw-utils";
2904 rev = "295862ba6be47ec3b11b6c85c10d982ffd9bc0b2";
2905 sha256 = "0ylvhmx0cnj2x38plwqlq4pqyqyxxhf4s08hknnl7qhrr5kd533f";
2906 };
2907 dependencies = [];
2908
2909 };
2910
2911 vim-addon-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2912 name = "vim-addon-nix-2017-09-11";
2913 src = fetchgit {
2914 url = "git://github.com/MarcWeber/vim-addon-nix";
2915 rev = "3001a9db5f816dd7af11384f15415bddd146ef86";
2916 sha256 = "195z2yz09wirpqjpsha8x7qcr9is1q8qph4j0svws6qbqrkh8ryy";
2917 };
2918 dependencies = ["vim-addon-completion" "vim-addon-goto-thing-at-cursor" "vim-addon-errorformats" "vim-addon-actions" "vim-addon-mw-utils" "tlib"];
2919
2920 };
2921
2922 vim-addon-other = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2923 name = "vim-addon-other-2014-07-15";
2924 src = fetchgit {
2925 url = "git://github.com/MarcWeber/vim-addon-other";
2926 rev = "f78720c9cb5bf871cabb13c7cbf94378dbf0163b";
2927 sha256 = "0cjz7mlyfkkncas4ss7rwxb0q38ls1qw1p15hac1imscscsvyjc6";
2928 };
2929 dependencies = ["vim-addon-actions" "vim-addon-mw-utils"];
2930
2931 };
2932
2933 vim-addon-php-manual = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2934 name = "vim-addon-php-manual-2015-01-01";
2935 src = fetchgit {
2936 url = "git://github.com/MarcWeber/vim-addon-php-manual";
2937 rev = "5f9810dd1f6e9f36a45f637ae6260ccff09256ff";
2938 sha256 = "1kc67f12wccqdza069b75lpcbqp4kv4r23i4mfz0ihwif5mfnhir";
2939 };
2940 dependencies = [];
2941
2942 };
2943
2944 vim-addon-signs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2945 name = "vim-addon-signs-2013-04-19";
2946 src = fetchgit {
2947 url = "git://github.com/MarcWeber/vim-addon-signs";
2948 rev = "17a49f293d18174ff09d1bfff5ba86e8eee8e8ae";
2949 sha256 = "0i4gfp30hmw1vqjl6zxjrgkca3ikdkcnjmma2mncjmcr6f59kjzy";
2950 };
2951 dependencies = [];
2952
2953 };
2954
2955 vim-addon-sql = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2956 name = "vim-addon-sql-2017-02-11";
2957 src = fetchgit {
2958 url = "git://github.com/MarcWeber/vim-addon-sql";
2959 rev = "048a139af36829fce670c8ff80d3aad927557ee6";
2960 sha256 = "0ihm157sby6csdwsnw2gwh3jmm3prm1mxwgkx2hsfwlmpb1vwwm3";
2961 };
2962 dependencies = ["vim-addon-completion" "vim-addon-background-cmd" "tlib"];
2963
2964 };
2965
2966 vim-addon-syntax-checker = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2967 name = "vim-addon-syntax-checker-2017-06-26";
2968 src = fetchgit {
2969 url = "git://github.com/MarcWeber/vim-addon-syntax-checker";
2970 rev = "739e5719b77c6aea3299c27fc1f4238ac54a8344";
2971 sha256 = "1rcn1ps06156nyglvxg6m7pn3vhvmnv5ad6kidp59hggyr5332i9";
2972 };
2973 dependencies = ["vim-addon-mw-utils" "tlib"];
2974
2975 };
2976
2977 vim-addon-toggle-buffer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2978 name = "vim-addon-toggle-buffer-2012-01-13";
2979 src = fetchgit {
2980 url = "git://github.com/MarcWeber/vim-addon-toggle-buffer";
2981 rev = "a1b38b9c5709cba666ed2d84ef06548f675c6b0b";
2982 sha256 = "1xq38kfdm36c34ln66znw841q797w5gm8bpq1x64bsf2h6n3ml03";
2983 };
2984 dependencies = ["vim-addon-mw-utils" "tlib"];
2985
2986 };
2987
2988 vim-addon-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2989 name = "vim-addon-xdebug-2014-08-29";
2990 src = fetchgit {
2991 url = "git://github.com/MarcWeber/vim-addon-xdebug";
2992 rev = "45f26407305b4ce6f8f5f37d2b5e6e4354104172";
2993 sha256 = "1i64ppdfp2qqq7vw1jf160mj4ikc04v39iazdab83xmiqjsh8ixw";
2994 };
2995 dependencies = ["WebAPI" "vim-addon-mw-utils" "vim-addon-signs" "vim-addon-async"];
2996
2997 };
2998
2999 vim-airline = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3000 name = "vim-airline-2018-03-06";
3001 src = fetchgit {
3002 url = "git://github.com/vim-airline/vim-airline";
3003 rev = "958f78335eafe419ee002ad58d358854323de33a";
3004 sha256 = "1h0a0rsnbbwhw55r2hcpfkxqamnx62jzqb451lh3ipvfs0ral6w7";
3005 };
3006 dependencies = [];
3007
3008 };
3009
3010 vim-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3011 name = "vim-coffee-script-2018-02-27";
3012 src = fetchgit {
3013 url = "git://github.com/kchmck/vim-coffee-script";
3014 rev = "9e3b4de2a476caeb6ff21b5da20966d7c67a98bb";
3015 sha256 = "1yzhyi12r508r2yjkzbcnddv3q4whjf3kchp23xs0snhwd9b981x";
3016 };
3017 dependencies = [];
3018
3019 };
3020
3021 vim-cursorword = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3022 name = "vim-cursorword-2017-10-19";
3023 src = fetchgit {
3024 url = "git://github.com/itchyny/vim-cursorword";
3025 rev = "4878d6185b99131c5f610cc6ad0e223439ac4601";
3026 sha256 = "170nf0w7i5k3cr72dkvraq2p0lzsvb3cmdvslyz7cmxnz611n6bf";
3027 };
3028 dependencies = [];
3029
3030 };
3031
3032 vim-easy-align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3033 name = "vim-easy-align-2017-06-03";
3034 src = fetchgit {
3035 url = "git://github.com/junegunn/vim-easy-align";
3036 rev = "1cd724dc239c3a0f7a12e0fac85945cc3dbe07b0";
3037 sha256 = "0bqk1sdqamfgagh31a60c7gvvsvjpg1xys7ivqh62iqlny5i9774";
3038 };
3039 dependencies = [];
3040
3041 };
3042
3043 vim-ft-diff_fold = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3044 name = "vim-ft-diff_fold-2013-02-10";
3045 src = fetchgit {
3046 url = "git://github.com/thinca/vim-ft-diff_fold";
3047 rev = "89771dffd3682ef82a4b3b3e9c971b9909f08e87";
3048 sha256 = "0bk95cxkfzamlgv1x2jb1bnfas2pmvvqgpn5fvxddf0andm8sfma";
3049 };
3050 dependencies = [];
3051
3052 };
3053
3054 vim-gista = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3055 name = "vim-gista-2017-02-20";
3056 src = fetchgit {
3057 url = "git://github.com/lambdalisue/vim-gista";
3058 rev = "b6cd41d0eb480cd79e84f3da3703613d0cf94a6c";
3059 sha256 = "0bkzbppd3jdci4yvifb4sh05q20qn8cr3j9kqhxyc703s0l0lk2s";
3060 };
3061 dependencies = [];
3062
3063 };
3064
3065 vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3066 name = "vim-gitgutter-2018-03-08";
3067 src = fetchgit {
3068 url = "git://github.com/airblade/vim-gitgutter";
3069 rev = "380e7935b7b4cac10d3bc3031d492deaf5008495";
3070 sha256 = "0c1dh3rkhgrp1sala1y5y2wn7b94c75y7h3j3dsl8lmbl64y2vl8";
3071 };
3072 dependencies = [];
3073
3074 };
3075
3076 vim-dashboard = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3077 name = "vim-dashboard-2017-08-08";
3078 src = fetchgit {
3079 url = "git://github.com/junegunn/vim-github-dashboard";
3080 rev = "054d7c69d9882a6ffccedd6e43623e184958d3b6";
3081 sha256 = "1ns6dd8719hqrkqnxd52ssi7gxjxni7w4l1ih7ag72d62qzw0p8y";
3082 };
3083 dependencies = [];
3084
3085 };
3086
3087 vim-iced-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3088 name = "vim-iced-coffee-script-2013-12-27";
3089 src = fetchgit {
3090 url = "git://github.com/noc7c9/vim-iced-coffee-script";
3091 rev = "e42e0775fa4b1f8840c55cd36ac3d1cedbc1dea2";
3092 sha256 = "14yfirny359rlrr082il2ys3hxiyrbbk794rdxrs2lasjy8rb1f7";
3093 };
3094 dependencies = [];
3095
3096 };
3097
3098 vim-javascript = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3099 name = "vim-javascript-2018-03-04";
3100 src = fetchgit {
3101 url = "git://github.com/pangloss/vim-javascript";
3102 rev = "3e0b1af8c2b2b613add52d782b29f325c6a414e3";
3103 sha256 = "1rxds6sswnm7xyy39ljwhykb3r6jd9jsm1lbhhw2r226d56pj15w";
3104 };
3105 dependencies = [];
3106
3107 };
3108
3109 vim-jsbeautify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3110 name = "vim-jsbeautify-2018-01-31";
3111 src = fetchgit {
3112 url = "git://github.com/maksimr/vim-jsbeautify";
3113 rev = "7a55bffa7d87e4f1ed11650e56a1361779b39624";
3114 sha256 = "01jvc3nkvmhw9n7m9x96ax1ndzw78ryjmgrvkqb7gja1xb8i8jqq";
3115 };
3116 dependencies = [];
3117
3118 };
3119
3120 vim-latex-live-preview = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3121 name = "vim-latex-live-preview-2017-11-09";
3122 src = fetchgit {
3123 url = "git://github.com/xuhdev/vim-latex-live-preview";
3124 rev = "9855f084d0751dbd40a8cb56518f239e5eb1a624";
3125 sha256 = "0linzdq2zrz5yfpqa51n2i9vrwr0x2r93ckx6n1ngyiw535ddafy";
3126 };
3127 dependencies = [];
3128
3129 };
3130
3131 vim-logreview = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3132 name = "vim-logreview-2017-07-08";
3133 src = fetchgit {
3134 url = "git://github.com/andreshazard/vim-logreview";
3135 rev = "b7b66ab338e904127d796af49235b8c29742f18f";
3136 sha256 = "09lyymq0f3ybqdzhbpia7b0wcjbcyg5nkqd72qk8jkvc42da2af3";
3137 };
3138 dependencies = [];
3139
3140 };
3141
3142 vim-multiple-cursors = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3143 name = "vim-multiple-cursors-2018-03-02";
3144 src = fetchgit {
3145 url = "git://github.com/terryma/vim-multiple-cursors";
3146 rev = "c9b95e49a48937903c9fc41d87d9b4c9aded10d7";
3147 sha256 = "1r8xlfydarvaags541xn1mc5ry97ikyvjhkrpyngzfw48jlc0aaa";
3148 };
3149 dependencies = [];
3150
3151 };
3152
3153 vim-pencil = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3154 name = "vim-pencil-2017-06-14";
3155 src = fetchgit {
3156 url = "git://github.com/reedes/vim-pencil";
3157 rev = "2dcd974b7255e4af83cf79a208f04a3489065e22";
3158 sha256 = "0swc6sszj1f4h5hgi7z7j1xw54d69mg7f18rk2kf5y453qwg4jc0";
3159 };
3160 dependencies = [];
3161
3162 };
3163
3164 vim-ruby = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3165 name = "vim-ruby-2018-03-02";
3166 src = fetchgit {
3167 url = "git://github.com/vim-ruby/vim-ruby";
3168 rev = "15e32500f58c3bb66eb6b1eb4af57d86263895c0";
3169 sha256 = "15lhg4wdrx7989rbawpa2jlfrfnhf5km76g8ld5b2c2gqixxy4aj";
3170 };
3171 dependencies = [];
3172
3173 };
3174
3175 vim-scouter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3176 name = "vim-scouter-2014-08-10";
3177 src = fetchgit {
3178 url = "git://github.com/thinca/vim-scouter";
3179 rev = "5221901d4ad6b2ef8b370b336db2aa7f69f2b6dc";
3180 sha256 = "0fx64hj1kzrsxz96195d5lm3x88zyycbcr78819mcbgfzyxis6b8";
3181 };
3182 dependencies = [];
3183
3184 };
3185
3186 vim-signature = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3187 name = "vim-signature-2018-02-28";
3188 src = fetchgit {
3189 url = "git://github.com/kshenoy/vim-signature";
3190 rev = "21b03ff51d08775a44417db14bf6dee690723d06";
3191 sha256 = "1v36zkr8jkhhfsdli6rvrz3akcr8bmfqyrkxb2izb0c250b9swrg";
3192 };
3193 dependencies = [];
3194
3195 };
3196
3197 vim-signify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3198 name = "vim-signify-2018-02-21";
3199 src = fetchgit {
3200 url = "git://github.com/mhinz/vim-signify";
3201 rev = "26ed57e0fe7a28c8763920e946b2225ec577df3f";
3202 sha256 = "0xkmyzm79gay1cga9znlsdk3mwc6smavv7xg5x6gr8a17wjipmlm";
3203 };
3204 dependencies = [];
3205
3206 };
3207
3208 vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3209 name = "vim-snippets-2018-03-05";
3210 src = fetchgit {
3211 url = "git://github.com/honza/vim-snippets";
3212 rev = "f02955d40b64c9db6f6bdeee40d0f44a00c58865";
3213 sha256 = "0ylbvr88xh1lw4lbiiwg617wp4r25d32wl4rsb7s2c5isy6aimki";
3214 };
3215 dependencies = [];
3216
3217 };
3218
3219 vim-webdevicons = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3220 name = "vim-webdevicons-2018-03-10";
3221 src = fetchgit {
3222 url = "git://github.com/ryanoasis/vim-devicons";
3223 rev = "d9a8fef7e9ffa19516ed42634e9fcd37e9e2cf48";
3224 sha256 = "0vwbjxg0ai627v2mynbklvldxn5dllj3wfhhhlyqgdrn4ls6l5nc";
3225 };
3226 dependencies = [];
3227
3228 };
3229
3230 vim2hs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3231 name = "vim2hs-2014-04-16";
3232 src = fetchgit {
3233 url = "git://github.com/dag/vim2hs";
3234 rev = "f2afd55704bfe0a2d66e6b270d247e9b8a7b1664";
3235 sha256 = "18lqrl3hqb6cmizc04bbnsh8j0g761w2q8wascbzzfw80dmxy36b";
3236 };
3237 dependencies = [];
3238
3239 };
3240
3241 vimwiki = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3242 name = "vimwiki-2018-02-26";
3243 src = fetchgit {
3244 url = "git://github.com/vimwiki/vimwiki";
3245 rev = "4bacbe00005f23d72d247fdde3a9e857d690b44b";
3246 sha256 = "1kbblgzl311ksgyy4q44cngzacn3i2sfmfgmv441vzc7lq0fpmd6";
3247 };
3248 dependencies = [];
3249
3250 };
3251
3252 vinegar = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3253 name = "vinegar-2017-12-28";
3254 src = fetchgit {
3255 url = "git://github.com/tpope/vim-vinegar";
3256 rev = "44bc76a6abf6aeafa4d0808288bb4fcc9a2e98f8";
3257 sha256 = "1h612j0w0kz2f8575r63dzdi65fhq77dp7rhziixs3pkq54pqcsg";
3258 };
3259 dependencies = [];
3260
3261 };
3262
3263 vundle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3264 name = "vundle-2018-02-02";
3265 src = fetchgit {
3266 url = "git://github.com/gmarik/vundle";
3267 rev = "9a38216a1c0c597f978d73547d37681fc689c90d";
3268 sha256 = "1695glma8zf2lnp0w713sdvwqagf1s127p4i60114nk6gx5g5x2c";
3269 };
3270 dependencies = [];
3271
3272 };
3273
3274 xterm-color-table = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3275 name = "xterm-color-table-2013-12-31";
3276 src = fetchgit {
3277 url = "git://github.com/guns/xterm-color-table.vim";
3278 rev = "9754e857e5f4fe1f8727106dcc682d21c29a51e4";
3279 sha256 = "08a1d9428xwrjp40qgi34cb5fwgc239qf3agxl32k7bqbn08pq19";
3280 };
3281 dependencies = [];
3282
3283 };
3284
3285 zeavim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
3286 name = "zeavim-2017-12-20";
3287 src = fetchgit {
3288 url = "git://github.com/KabbAmine/zeavim.vim";
3289 rev = "88f81078059d98d7637a93b90730897a3af231a4";
3290 sha256 = "1p43f6bbs9fcvvp1i90kzx1xj7k6c5w3ajf9wlrplpkz6hsiv2wv";
3291 };
3292 dependencies = [];
3293
3294 };
3295
3296}