1# TODO check that no license information gets lost
2{ fetchurl, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip
3, which, fetchgit, llvmPackages
4, xkb_switch, rustracerd, fzf
5, python3, boost, icu
6, ycmd
7, pythonPackages, python3Packages
8, Cocoa ? null, git
9}:
10
11let
12
13inherit (vimUtils.override {inherit vim;}) rtpPath addRtp buildVimPlugin
14 buildVimPluginFrom2Nix vimHelpTags;
15in
16
17# TL;DR
18# Add your plugin to ./vim-plugin-names
19# Regenerate via `nix-shell -p vimPlugins.pluginnames2nix --command "vim-plugin-names-to-nix"`
20# Copy the generated expression(s) into this file.
21# If plugin is complicated then make changes to ./vim2nix/additional-nix-code
22
23# This attrs contains two sections:
24# The first contains plugins added manually, the second contains plugins
25# generated by call nix#ExportPluginsForNix.
26# Documentation & usage see vim-utils.nix.
27# attribute names should be the same as used by vim-pi to make dependency
28# resolution work
29rec {
30 # This is not a plugin, it provides bin/vim-open-buffer-with-plugins-derivations
31 # which recreates this the following derivations based on ./vim-plugin-names
32 pluginnames2nix = vimUtils.pluginnames2Nix {
33 name = "vim-plugin-names-to-nix";
34 namefiles = [./vim-plugin-names];
35 };
36
37 # Section I
38 vim-addon-vim2nix = vim2nix;
39
40 vim2nix = buildVimPluginFrom2Nix { # use it to update plugins
41 name = "vim2nix";
42 src = ./vim2nix;
43 dependencies = ["vim-addon-manager"];
44 };
45
46
47 # Section II
48 # Update with vimUtils.vimPlugins.pluginnames2Nix command
49
50 # aliasess
51 "sourcemap.vim" = sourcemap;
52 Colour_Sampler_Pack = Colour-Sampler-Pack;
53 YouCompleteMe = youcompleteme;
54 airline = vim-airline;
55 alternative = a-vim; # backwards compat, added 2014-10-21
56 calendar = calendar-vim;
57 coffee-script = vim-coffee-script;
58 coffeeScript = coffee-script; # backwards compat, added 2014-10-18
59 colors-solarized = Solarized;
60 colorsamplerpack = Colour_Sampler_Pack;
61 command_T = command-t; # backwards compat, added 2014-10-18
62 css_color_5056 = vim-css-color;
63 ctrlp = ctrlp-vim;
64 easy-align = vim-easy-align;
65 easymotion = vim-easymotion;
66 eighties = vim-eighties;
67 ghc-mod-vim = ghcmod;
68 gist-vim = Gist;
69 gitgutter = vim-gitgutter;
70 gundo = gundo-vim;
71 Gundo = gundo-vim; # backwards compat, added 2015-10-03
72 haskellConceal = haskellconceal; # backwards compat, added 2014-10-18
73 haskellconceal = vim-haskellconceal;
74 haskellConcealPlus = vim-haskellConcealPlus;
75 hier = vim-hier;
76 hlint-refactor = hlint-refactor-vim;
77 hoogle = Hoogle;
78 ipython = vim-ipython;
79 latex-live-preview = vim-latex-live-preview;
80 multiple-cursors = vim-multiple-cursors;
81 necoGhc = neco-ghc; # backwards compat, added 2014-10-18
82 neocomplete = neocomplete-vim;
83 neosnippet = neosnippet-vim;
84 nerdcommenter = The_NERD_Commenter;
85 nerdtree = The_NERD_tree;
86 polyglot = vim-polyglot;
87 quickrun = vim-quickrun;
88 repeat = vim-repeat;
89 signature = vim-signature;
90 stylish-haskell = vim-stylish-haskell;
91 stylishHaskell = stylish-haskell; # backwards compat, added 2014-10-18
92 supertab = Supertab;
93 syntastic = Syntastic;
94 tabular = Tabular;
95 tagbar = Tagbar;
96 thumbnail = thumbnail-vim;
97 tmux-navigator = vim-tmux-navigator;
98 tmuxNavigator = tmux-navigator; # backwards compat, added 2014-10-18
99 tslime = tslime-vim;
100 unite = unite-vim;
101 vimproc = vimproc-vim;
102 vimshell = vimshell-vim;
103 watchdogs = vim-watchdogs;
104 webapi-vim = WebAPI;
105 wombat256 = wombat256-vim; # backwards compat, added 2015-7-8
106 yankring = YankRing;
107
108 fzfWrapper = buildVimPluginFrom2Nix {
109 name = fzf.name;
110 src = fzf.src;
111 dependencies = [];
112 };
113
114 # --- generated packages bellow this line ---
115
116 CSApprox = buildVimPluginFrom2Nix { # created by nix#NixDerivation
117 name = "CSApprox-2013-07-26";
118 src = fetchgit {
119 url = "git://github.com/godlygeek/csapprox";
120 rev = "7981dac51d8b6776985aa08cb7b5ee98ea7f2ddd";
121 sha256 = "08g4x6nnd6hkgm2daa5ihhz75pcdx3jzzv8rfjls80qajlhx5rf6";
122 };
123 dependencies = [];
124
125 };
126
127 CheckAttach = buildVimPluginFrom2Nix { # created by nix#NixDerivation
128 name = "CheckAttach-2017-03-15";
129 src = fetchgit {
130 url = "git://github.com/chrisbra/CheckAttach";
131 rev = "b583efd45e03902438a55299623390a0f9253513";
132 sha256 = "0j1nx8ryrlixisd8z2d24k1xk2yrqk4i0ar8m4vq3jlr74309a34";
133 };
134 dependencies = [];
135
136 };
137
138 Gist = buildVimPluginFrom2Nix { # created by nix#NixDerivation
139 name = "Gist-2016-10-10";
140 src = fetchgit {
141 url = "git://github.com/mattn/gist-vim";
142 rev = "f0d63579eab7548cf12f979dc52ef5a370ecbe63";
143 sha256 = "06nix49j4inxy3rkcv32f4ka89g4crqwfqnrm3b76iwwky8m2p17";
144 };
145 dependencies = [];
146
147 };
148
149 Hoogle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
150 name = "Hoogle-2017-03-01";
151 src = fetchgit {
152 url = "git://github.com/Twinside/vim-hoogle";
153 rev = "cfb0c864dbacf6f916ba05c4a688e21154aa971b";
154 sha256 = "0gddyh47gwy684kjs9yxfnc0lg8jq9w5pdyv3yrvypyiqi51vw1b";
155 };
156 dependencies = [];
157
158 };
159
160 Solarized = buildVimPluginFrom2Nix { # created by nix#NixDerivation
161 name = "Solarized-2011-05-09";
162 src = fetchgit {
163 url = "git://github.com/altercation/vim-colors-solarized";
164 rev = "528a59f26d12278698bb946f8fb82a63711eec21";
165 sha256 = "05d3lmd1shyagvr3jygqghxd3k8a4vp32723fvxdm57fdrlyzcm1";
166 };
167 dependencies = [];
168
169 };
170
171 Supertab = buildVimPluginFrom2Nix { # created by nix#NixDerivation
172 name = "Supertab-2017-06-20";
173 src = fetchgit {
174 url = "git://github.com/ervandew/supertab";
175 rev = "22aac5c2cb6a8ebe906bf1495eb727717390e62e";
176 sha256 = "1m70rx9ba2aqydfr9yxsrff61qyzmnda24qkgn666ypnsai7cfbn";
177 };
178 dependencies = [];
179
180 };
181
182 Syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation
183 name = "Syntastic-2017-07-07";
184 src = fetchgit {
185 url = "git://github.com/scrooloose/syntastic";
186 rev = "e1161a723a353db99780f9a9351340df7abbb106";
187 sha256 = "00gvx33yz199n7lynli0fb8cf58lb5cs0jxrqggjjy261xv2lcq1";
188 };
189 dependencies = [];
190
191 };
192
193 Tabular = buildVimPluginFrom2Nix { # created by nix#NixDerivation
194 name = "Tabular-2016-05-04";
195 src = fetchgit {
196 url = "git://github.com/godlygeek/tabular";
197 rev = "00e1e7fcdbc6d753e0bc8043e0d2546fa81bf367";
198 sha256 = "185jpisk9hamcwb6aiavdzjdbbigzdra8f4mgs98r9cm9j448xkz";
199 };
200 dependencies = [];
201
202 };
203
204 Tagbar = buildVimPluginFrom2Nix { # created by nix#NixDerivation
205 name = "Tagbar-2017-06-15";
206 src = fetchgit {
207 url = "git://github.com/majutsushi/tagbar";
208 rev = "f5792732de16b8a2cc202f920e363eb413d7241d";
209 sha256 = "188xdmrp2g7bfzg95pv1qa2l17sqwy1g2p4syj7546fksddmwgms";
210 };
211 dependencies = [];
212
213 };
214
215 The_NERD_Commenter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
216 name = "The_NERD_Commenter-2017-04-07";
217 src = fetchgit {
218 url = "git://github.com/scrooloose/nerdcommenter";
219 rev = "285902752f7ab2052ac700a6d29b263dd5788afb";
220 sha256 = "1hd5ibpvxra8asr4zp0l68wc4djjgfbvh7kzmxc1r7jqr70wj8dl";
221 };
222 dependencies = [];
223
224 };
225
226 The_NERD_tree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
227 name = "The_NERD_tree-2017-07-17";
228 src = fetchgit {
229 url = "git://github.com/scrooloose/nerdtree";
230 rev = "e2a9929bbea0ec2050f2ea44b7e7bae3ccac66e6";
231 sha256 = "03mygl8ic4awx4js04x0nw2l96kjv4vsldkgrdx0n43sh5i4z7nk";
232 };
233 dependencies = [];
234
235 };
236
237 UltiSnips = buildVimPluginFrom2Nix { # created by nix#NixDerivation
238 name = "UltiSnips-2017-06-30";
239 src = fetchgit {
240 url = "git://github.com/SirVer/ultisnips";
241 rev = "423f264e753cec260b4f14455126e6db7ba429af";
242 sha256 = "19g3k0nqzizv39rxwgkca9n2gsd19z2wwsmicr0zcgnf50nhkznh";
243 };
244 dependencies = [];
245
246 };
247
248 VimOutliner = buildVimPluginFrom2Nix { # created by nix#NixDerivation
249 name = "VimOutliner-2017-05-03";
250 src = fetchgit {
251 url = "git://github.com/vimoutliner/vimoutliner";
252 rev = "fd2ca709acc161a9e65e75577c2bfefde173401a";
253 sha256 = "13cqhajfz6rag7qwj2rws5gjs1f2jlrb2s30kyjrx227i05vikkn";
254 };
255 dependencies = [];
256
257 };
258
259 WebAPI = buildVimPluginFrom2Nix { # created by nix#NixDerivation
260 name = "WebAPI-2017-04-26";
261 src = fetchgit {
262 url = "git://github.com/mattn/webapi-vim";
263 rev = "e76f2da9a8f292a999a95ae688534f76c2dca9bd";
264 sha256 = "02970g7blj478vid88gayba39rdcm9236nigkrijapyf5rd24zhh";
265 };
266 dependencies = [];
267
268 };
269
270 YankRing = buildVimPluginFrom2Nix { # created by nix#NixDerivation
271 name = "YankRing";
272 src = fetchurl {
273 url = "http://www.vim.org/scripts/download_script.php?src_id=23487";
274 name = "yankring_190.zip";
275 sha256 = "0nnxpsfjp2p9jvs3y5ynnd5s56snz9927zdp9bgmay2jgxfmp0si";
276 };
277 buildInputs = [ unzip ];
278 dependencies = [];
279 meta = {
280 url = "http://www.vim.org/scripts/script.php?script_id=1234";
281 };
282
283 sourceRoot = ".";
284 };
285
286 clang_complete = buildVimPluginFrom2Nix { # created by nix#NixDerivation
287 name = "clang_complete-2017-07-15";
288 src = fetchgit {
289 url = "git://github.com/Rip-Rip/clang_complete";
290 rev = "c41eea05317526a4ddd3bd389f3723390b196d4d";
291 sha256 = "0bfalbzhy3n1k8bsvnh6aykgj6d17n6qgi9ahp0d8plvbjjvfw6j";
292 };
293 dependencies = [];
294 # In addition to the arguments you pass to your compiler, you also need to
295 # specify the path of the C++ std header (if you are using C++).
296 # These usually implicitly set by cc-wrapper around clang (pkgs/build-support/cc-wrapper).
297 # The linked ruby code shows generates the required '.clang_complete' for cmake based projects
298 # https://gist.github.com/Mic92/135e83803ed29162817fce4098dec144
299 # as an alternative you can execute the following command:
300 # $ eval echo $(nix-instantiate --eval --expr 'with (import <nixpkgs>) {}; clang.default_cxx_stdlib_compile')
301 preFixup = ''
302 substituteInPlace "$out"/share/vim-plugins/clang_complete/plugin/clang_complete.vim \
303 --replace "let g:clang_library_path = '' + "''" + ''" "let g:clang_library_path='${llvmPackages.clang.cc}/lib/libclang.so'"
304 '';
305 };
306
307 commentary = buildVimPluginFrom2Nix { # created by nix#NixDerivation
308 name = "commentary-2017-03-12";
309 src = fetchgit {
310 url = "git://github.com/tpope/vim-commentary";
311 rev = "be79030b3e8c0ee3c5f45b4333919e4830531e80";
312 sha256 = "1msbmbz96wa88ymjvcrbr07mxdrsjy1w2hl7z4pihf318ryq98cm";
313 };
314 dependencies = [];
315
316 };
317
318 ctrlp-cmatcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation
319 name = "ctrlp-cmatcher-2015-10-15";
320 src = fetchgit {
321 url = "git://github.com/JazzCore/ctrlp-cmatcher";
322 rev = "6c36334f106b6fd981d23e724e9a618734cab43a";
323 sha256 = "1573kd6xf3n8sxlz2j4zadai4rnc7k3s9c54648yfzickwn57d8q";
324 };
325 dependencies = [];
326 buildInputs = [ python ];
327 buildPhase = ''
328 patchShebangs .
329 ./install.sh
330 '';
331 };
332
333 ctrlp-py-matcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation
334 name = "ctrlp-py-matcher-2017-01-05";
335 src = fetchgit {
336 url = "git://github.com/FelikZ/ctrlp-py-matcher";
337 rev = "a0710a4937ab9dc10bc0a8b56b41fcc88534147c";
338 sha256 = "198y8998sx2maarn2vawx8hqldsfbnn4i6rlg56qw6brsrssssx2";
339 };
340 dependencies = [];
341
342 };
343
344 ctrlp-z = buildVimPluginFrom2Nix { # created by nix#NixDerivation
345 name = "ctrlp-z-2015-10-17";
346 src = fetchgit {
347 url = "git://github.com/amiorin/ctrlp-z";
348 rev = "d1a69ec623ce24b9a30fc8fe3cd468c322b03026";
349 sha256 = "16nsj1g8lqmyizlb5ijwhf4dsmh0xv1kwqq6jxvhaf55vfga82yl";
350 };
351 dependencies = [];
352
353 };
354
355 extradite = buildVimPluginFrom2Nix { # created by nix#NixDerivation
356 name = "extradite-2015-09-22";
357 src = fetchgit {
358 url = "git://github.com/int3/vim-extradite";
359 rev = "52326f6d333cdbb9e9c6d6772af87f4f39c00526";
360 sha256 = "0c89i0spvdm9vi65q15qcmsfmwa9rds2wmaq1kf6s7q7ywvs6w8i";
361 };
362 dependencies = [];
363
364 };
365
366 fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation
367 name = "fugitive-2017-07-12";
368 src = fetchgit {
369 url = "git://github.com/tpope/vim-fugitive";
370 rev = "913fff1cea3aa1a08a360a494fa05555e59147f5";
371 sha256 = "1qxzxk5szm25r7wi39n5s91fjnjgz5xib67risjcwhk6jdv0vzyd";
372 };
373 dependencies = [];
374
375 };
376
377 ghcmod = buildVimPluginFrom2Nix { # created by nix#NixDerivation
378 name = "ghcmod-2016-06-19";
379 src = fetchgit {
380 url = "git://github.com/eagletmt/ghcmod-vim";
381 rev = "1d192d13d68ab59f9f46497a0909bf24a7b7dfff";
382 sha256 = "0bzahgzagnf0a9zv86jhdf8nc3p0yfz9izv5n3lc8gc12cp47d0a";
383 };
384 dependencies = [];
385
386 };
387
388 vim-auto-save = buildVimPluginFrom2Nix { # created by nix#NixDerivation
389 name = "vim-auto-save-2017-03-10";
390 src = fetchgit {
391 url = "https://github.com/907th/vim-auto-save";
392 rev = "a81dea26d2a62dbe1a0f89aba5834aee40a89512";
393 sha256 = "16ljzp2rww9c13pl2ci2pqri1774qp3yhhh042n7vqxcwy80kjjc";
394 };
395 dependencies = [];
396
397 };
398
399 vim-autoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
400 name = "vim-autoformat-2017-06-26";
401 src = fetchgit {
402 url = "https://github.com/Chiel92/vim-autoformat";
403 rev = "ad189cdde5a50699a1d6b2b4b669e73942e47710";
404 sha256 = "0jk1qigvz2xkpr13ii0pg0nszrnzwn51gckxjvgaqwbsz967ccsj";
405 };
406 dependencies = [];
407
408 };
409
410 vim-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
411 name = "vim-nix-2017-04-30";
412 src = fetchgit {
413 url = "https://github.com/LnL7/vim-nix";
414 rev = "867488a04c2ddc47f0f235f37599a06472fea299";
415 sha256 = "1mwc06z9q45cigyxd0r9qnfs4ph6lbcwx50rf5lmpavakcn3vqir";
416 };
417 dependencies = [];
418
419 };
420
421 tsuquyomi = buildVimPluginFrom2Nix { # created by nix#NixDerivation
422 name = "tsuquyomi-2017-05-31";
423 src = fetchgit {
424 url = "https://github.com/Quramy/tsuquyomi";
425 rev = "46dfcd72b9701a52331349ba0d5c7596167093ab";
426 sha256 = "12rvkc3wf959siijrgld56xvfhgacglxb69z4q567fsjv3ynqnrv";
427 };
428 dependencies = [];
429
430 };
431
432 deoplete-nvim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
433 name = "deoplete-nvim-2017-07-22";
434 src = fetchgit {
435 url = "https://github.com/Shougo/deoplete.nvim";
436 rev = "5cef0e6b607d3acb742d1de07a4ddd3a5bfa3036";
437 sha256 = "0mh8zjaw369djffi1vzy124pwnrcxg4pbyjnhy3pq2j6k579znc2";
438 };
439 dependencies = [];
440
441 };
442
443 Spacegray-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
444 name = "Spacegray-vim-2017-05-05";
445 src = fetchgit {
446 url = "https://github.com/ajh17/Spacegray.vim";
447 rev = "95a5adbbbba7fb641af847d8666b8cad20431333";
448 sha256 = "10p02n4arml1b4ah0bz754ifvkqnbms4j0wlgzqs5azb20y2kliv";
449 };
450 dependencies = [];
451
452 };
453
454 nerdtree-git-plugin = buildVimPluginFrom2Nix { # created by nix#NixDerivation
455 name = "nerdtree-git-plugin-2017-03-12";
456 src = fetchgit {
457 url = "https://github.com/albfan/nerdtree-git-plugin";
458 rev = "d79a5d5a1b3bc5fab3ba94db44a8b2e5a211d61d";
459 sha256 = "0i77wijbr021zfv096ja15f5l52phvsd5gziqn1m3k60qkmb9gkj";
460 };
461 dependencies = [];
462
463 };
464
465 vim-closetag = buildVimPluginFrom2Nix { # created by nix#NixDerivation
466 name = "vim-closetag-2017-07-24";
467 src = fetchgit {
468 url = "https://github.com/alvan/vim-closetag";
469 rev = "2cacc501df30586c0f96f40f24d1a1239529198c";
470 sha256 = "00fayl6bnrf8b80xk73r1009z6hpzfc2jaih042hmnybx8k70byg";
471 };
472 dependencies = [];
473
474 };
475
476 vim-css-color = buildVimPluginFrom2Nix { # created by nix#NixDerivation
477 name = "vim-css-color-2017-02-09";
478 src = fetchgit {
479 url = "https://github.com/ap/vim-css-color";
480 rev = "2411b84298eb6db034001f35ce7cc32c36f9b43b";
481 sha256 = "1igqshk7wkh1wgihnmxnlh84fb98fm9lm8lfyjpcz6x8rg5vpmwc";
482 };
483 dependencies = [];
484
485 };
486
487 clighter8 = buildVimPluginFrom2Nix { # created by nix#NixDerivation
488 name = "clighter8-2017-07-23";
489 src = fetchgit {
490 url = "https://github.com/bbchung/clighter8";
491 rev = "a75644681c3a25f9441c482fd0b1c983d12da7e1";
492 sha256 = "0hl14l8d0c0rwh7pv1d9bxkrvh1wjxdgjyi7cnhn75m7x9fd3ijh";
493 };
494 dependencies = [];
495 preFixup = ''
496 sed "/^let g:clighter8_libclang_path/s|')$|${llvmPackages.clang.cc}/lib/libclang.so')|" \
497 -i "$out"/share/vim-plugins/clighter8/plugin/clighter8.vim
498 '';
499 };
500
501 neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation
502 name = "neomake-2017-07-25";
503 src = fetchgit {
504 url = "https://github.com/benekastah/neomake";
505 rev = "0d1f1508ce2c9cfcffbf74a6bdea9c5766301fd6";
506 sha256 = "0wc9b63s4j80f6irf2g6dmk2nx8w9il4dccbgmzirchmymndw4vh";
507 };
508 dependencies = [];
509
510 };
511
512 vim-hdevtools = buildVimPluginFrom2Nix { # created by nix#NixDerivation
513 name = "vim-hdevtools-2017-03-11";
514 src = fetchgit {
515 url = "https://github.com/bitc/vim-hdevtools";
516 rev = "4ffdace7002915cb10d663a2c56386286c5b8e37";
517 sha256 = "0s7qd72962sc56j8xzpzikjs9k5s89d5p0j541abl8zm0mavmyka";
518 };
519 dependencies = [];
520
521 };
522
523 vim-trailing-whitespace = buildVimPluginFrom2Nix { # created by nix#NixDerivation
524 name = "vim-trailing-whitespace-2016-03-27";
525 src = fetchgit {
526 url = "https://github.com/bronson/vim-trailing-whitespace";
527 rev = "733fb64337b6da4a51c85a43450cd620d8b617b5";
528 sha256 = "1469bd744lf8vk1nnw7kyq4ahpw84crp614mkpq88cs6rhvjhcyw";
529 };
530 dependencies = [];
531
532 };
533
534 vim-sort-motion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
535 name = "vim-sort-motion-2017-04-27";
536 src = fetchgit {
537 url = "https://github.com/christoomey/vim-sort-motion";
538 rev = "9833b22b24b469574178bff4a305472d52bd93b8";
539 sha256 = "1rvg4c89vlhqdy0p76rn51hz5mz7qv5pckdacs5zz3g8rcpqxxwq";
540 };
541 dependencies = [];
542
543 };
544
545 vim-tmux-navigator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
546 name = "vim-tmux-navigator-2017-07-07";
547 src = fetchgit {
548 url = "https://github.com/christoomey/vim-tmux-navigator";
549 rev = "d724094e7128acd7375cc758008f1e1688130877";
550 sha256 = "1n0n26lx056a0f8nmzbjpf8a48971g4d0fzv8xmq8yy505gbq9iw";
551 };
552 dependencies = [];
553
554 };
555
556 spacevim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
557 name = "spacevim-2017-03-31";
558 src = fetchgit {
559 url = "https://github.com/ctjhoa/spacevim";
560 rev = "f4cd52c1746021bb3278c6a085e8d07f1c1a9258";
561 sha256 = "0y146z0w1cbqwzw84k479a5hxs1phg1s11fqfvszn8928fsm8c4d";
562 };
563 dependencies = [];
564
565 };
566
567 ctrlp-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
568 name = "ctrlp-vim-2017-07-18";
569 src = fetchgit {
570 url = "https://github.com/ctrlpvim/ctrlp.vim";
571 rev = "3a048e85d3c2f72b1564e2dc43ed5b1d67bd59a9";
572 sha256 = "10i2lwjizd74b3zi1ahinz2h8qbd18jzw93xrpw0iswrynfsprjv";
573 };
574 dependencies = [];
575
576 };
577
578 agda-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
579 name = "agda-vim-2017-07-18";
580 src = fetchgit {
581 url = "https://github.com/derekelkins/agda-vim";
582 rev = "d82c5da78780e866e1afd8eecba1aa9c661c2aa8";
583 sha256 = "1aq7wyi1an6znql814w3v30p96yzyd5xnypblzxvsi62jahysfwa";
584 };
585 dependencies = [];
586
587 };
588
589 vim-scala = buildVimPluginFrom2Nix { # created by nix#NixDerivation
590 name = "vim-scala-2017-04-29";
591 src = fetchgit {
592 url = "https://github.com/derekwyatt/vim-scala";
593 rev = "e7640f26e56f0be344d60a6098e05d6928fd396d";
594 sha256 = "17gyqzsjjsg48x760qpm31bi169bzq0g80nm88jjkjw75m9jbv2j";
595 };
596 dependencies = [];
597
598 };
599
600 vim-jade = buildVimPluginFrom2Nix { # created by nix#NixDerivation
601 name = "vim-jade-2017-04-07";
602 src = fetchgit {
603 url = "https://github.com/digitaltoad/vim-jade";
604 rev = "ddc5592f8c36bf4bd915c16b38b8c76292c2b975";
605 sha256 = "069pha18g1nlzg44k742vjxm4zwjd1qjzhfllkr35qaiflvjm84y";
606 };
607 dependencies = [];
608
609 };
610
611 pony-vim-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation
612 name = "pony-vim-syntax-2016-01-23";
613 src = fetchgit {
614 url = "https://github.com/dleonard0/pony-vim-syntax";
615 rev = "a0ab2e14d5a3796ebec01ce196392dc1de349cb3";
616 sha256 = "1wraray7870hq75jqxyilxb125flhcgk9ysz437qbg75c495znl0";
617 };
618 dependencies = [];
619
620 };
621
622 vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
623 name = "vim-2017-05-24";
624 src = fetchgit {
625 url = "https://github.com/dracula/vim";
626 rev = "6a5bf34193927c70b6c21dcbe1c130d2ab0951d6";
627 sha256 = "1mmqrc52k133ddpxcs0mxjph4n4b856r5wbs17bgcpk95cfbspb1";
628 };
629 dependencies = [];
630
631 };
632
633 neco-ghc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
634 name = "neco-ghc-2017-07-22";
635 src = fetchgit {
636 url = "https://github.com/eagletmt/neco-ghc";
637 rev = "1c7bf1b544f295d066863b9f193de709aec5bbad";
638 sha256 = "1vbl75s0zvbw6zvs790yla06rl8akpamm0p98s5mbj7mdnivkqhb";
639 };
640 dependencies = [];
641
642 };
643
644 editorconfig-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
645 name = "editorconfig-vim-2017-05-13";
646 src = fetchgit {
647 url = "https://github.com/editorconfig/editorconfig-vim";
648 rev = "a069da8426ec5b9fc4d9f83c783c999e9d20f7d0";
649 sha256 = "1zx5a8if3r77dnyidix7j0gi04y4pmmi5kfzlr3kjazj00606l79";
650 };
651 dependencies = [];
652
653 };
654
655 acp = buildVimPluginFrom2Nix { # created by nix#NixDerivation
656 name = "acp-2013-02-05";
657 src = fetchgit {
658 url = "https://github.com/eikenb/acp";
659 rev = "5c627cec37d0d3b1670cb250d84e176e8b0c644e";
660 sha256 = "0h7s4nvxin7m2caka7g1hhlxj1bbiwsvw8s2lqwlh7nq43v23ghg";
661 };
662 dependencies = [];
663
664 };
665
666 vim-elixir = buildVimPluginFrom2Nix { # created by nix#NixDerivation
667 name = "vim-elixir-2017-07-19";
668 src = fetchgit {
669 url = "https://github.com/elixir-lang/vim-elixir";
670 rev = "7c16ab889d12a32a7d15c54c36c0f47809b06e06";
671 sha256 = "0h9gqxqyl6p6ckknn8838wz71xz5v2jqkc2swjdkfbff2n9k1gwb";
672 };
673 dependencies = [];
674
675 };
676
677 elm-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
678 name = "elm-vim-2017-07-09";
679 src = fetchgit {
680 url = "https://github.com/elmcast/elm-vim";
681 rev = "ae5315396cd0f3958750f10a5f3ad9d34d33f40d";
682 sha256 = "0a85l0mcxgha4s5c9lzdv9y2c1ff942y9a5sfjihz6sph21c77xp";
683 };
684 dependencies = [];
685
686 };
687
688 vim-localvimrc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
689 name = "vim-localvimrc-2017-07-06";
690 src = fetchgit {
691 url = "https://github.com/embear/vim-localvimrc";
692 rev = "48c01c214ea0312e8045aaa1a28b30850e98a194";
693 sha256 = "158ajdg3n8j0cxk2ry8rmnpfvnzmznhl573v8ddw6xni58b7bg4d";
694 };
695 dependencies = [];
696
697 };
698
699 vim-haskellConcealPlus = buildVimPluginFrom2Nix { # created by nix#NixDerivation
700 name = "vim-haskellConcealPlus-2016-05-13";
701 src = fetchgit {
702 url = "https://github.com/enomsg/vim-haskellConcealPlus";
703 rev = "81dfb51ff8e471fb1f30659a10daaf1bdd65fb03";
704 sha256 = "0vm76gxw62lkyxccrlnn8sblfl3d51svwfra9wfixq4h51jdggyr";
705 };
706 dependencies = [];
707
708 };
709
710 ensime-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
711 name = "ensime-vim-2017-07-06";
712 src = fetchgit {
713 url = "https://github.com/ensime/ensime-vim";
714 rev = "a8a2f024283af8e0b69165960ba59d850d1b80a4";
715 sha256 = "0vn7iv05jil7j1k4wgnnb9b1b4yqlxjkqmmz8a71291qg17bs5c8";
716 };
717 dependencies = ["vimproc" "vimshell" "self" "forms"];
718 pythonDependencies = with pythonPackages; [ sexpdata websocket_client ];
719 };
720
721 YUNOcommit-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
722 name = "YUNOcommit-vim-2014-11-26";
723 src = fetchgit {
724 url = "https://github.com/esneider/YUNOcommit.vim";
725 rev = "981082055a73ef076d7e27477874d2303153a448";
726 sha256 = "0mjc7fn405vcx1n7vadl98p5wgm6jxrlbdbkqgjq8f1m1ir81zab";
727 };
728 dependencies = [];
729
730 };
731
732 vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation
733 name = "vim-go-2017-07-25";
734 src = fetchgit {
735 url = "https://github.com/fatih/vim-go";
736 rev = "76cd99db6a88e825f361df0043cbff777c4a14fb";
737 sha256 = "1pda9dmaacnzwm92a7vsly053dq2c1bcsqx99rwr41mkpzsk649l";
738 };
739 dependencies = [];
740
741 };
742
743 vim-colorschemes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
744 name = "vim-colorschemes-2016-08-01";
745 src = fetchgit {
746 url = "https://github.com/flazz/vim-colorschemes";
747 rev = "b8dff40f69f1873effbed97c759a8452ecb240ed";
748 sha256 = "1mb08l2crl5mal0jllh9s099w2bqcb88vfjw3z5zj1jn8bbpniaj";
749 };
750 dependencies = [];
751
752 };
753
754 floobits-neovim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
755 name = "floobits-neovim-2017-07-25";
756 src = fetchgit {
757 url = "https://github.com/floobits/floobits-neovim";
758 rev = "5b83fc75e4241911649782fd5b87ac7da30e77bd";
759 sha256 = "05jrybkhg39v3z295l55aasb074wvm3pnyp7l38jqk7z4432gdc4";
760 };
761 dependencies = [];
762
763 };
764
765 psc-ide-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
766 name = "psc-ide-vim-2017-07-14";
767 src = fetchgit {
768 url = "https://github.com/frigoeu/psc-ide-vim";
769 rev = "0ff0c0a4e4087cb4444d0a19f2b2e436e723b186";
770 sha256 = "0kq8iqhv8flyc12m9ajmbrfk7k6zl3gnnxg5j8sw69aqy6pqvd0p";
771 };
772 dependencies = [];
773
774 };
775
776 vim-jsonnet = buildVimPluginFrom2Nix { # created by nix#NixDerivation
777 name = "vim-jsonnet-2017-04-06";
778 src = fetchgit {
779 url = "https://github.com/google/vim-jsonnet";
780 rev = "2637e273713322befc476760809d46500e6088f3";
781 sha256 = "0fxmqasznb3ra49r4j3fmksik7narnd3b6j1j4najp4l61x27ip2";
782 };
783 dependencies = [];
784
785 };
786
787 vim-jsdoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
788 name = "vim-jsdoc-2017-02-11";
789 src = fetchgit {
790 url = "https://github.com/heavenshell/vim-jsdoc";
791 rev = "cd8f084c3b4bd198620d45a007cee6b009b57b35";
792 sha256 = "0a2d9jwxjws8l7y89yn7xl07r5yh7r7987a8hfalvz12qmdmff1j";
793 };
794 dependencies = [];
795
796 };
797
798 vim-leader-guide = buildVimPluginFrom2Nix { # created by nix#NixDerivation
799 name = "vim-leader-guide-2017-03-18";
800 src = fetchgit {
801 url = "https://github.com/hecal3/vim-leader-guide";
802 rev = "6ac8c663e65c9c0ded70417b84f66ee59457893e";
803 sha256 = "1hqha3ig40ls15bnb10xpbl91swn0gxqnhmz5frkvvdzj4wq55fw";
804 };
805 dependencies = [];
806
807 };
808
809 idris-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
810 name = "idris-vim-2017-06-05";
811 src = fetchgit {
812 url = "https://github.com/idris-hackers/idris-vim";
813 rev = "0709927e689f4f4158661d4eb8ac6ce310cd7548";
814 sha256 = "05fiamb92l7d08kxv1jk5xpqvkxphr9vqi3bfa203mjkvymd3x34";
815 };
816 dependencies = [];
817
818 };
819
820 calendar-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
821 name = "calendar-vim-2017-07-08";
822 src = fetchgit {
823 url = "https://github.com/itchyny/calendar.vim";
824 rev = "6d6be26b2ad1870658525e2a42046429c845516c";
825 sha256 = "0g4k7vn3r8y0ss0nl6apxgpkdi7ixi87a9g5xr66n70lxyn7m9pz";
826 };
827 dependencies = [];
828
829 };
830
831 lightline-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
832 name = "lightline-vim-2017-05-30";
833 src = fetchgit {
834 url = "https://github.com/itchyny/lightline.vim";
835 rev = "ff74d6561487d220ed9d878172d8b55a79a4c17e";
836 sha256 = "0j8pn42vfc1ka6hjnfsanl98vlk2839am5d4ynz9p1j1hichiqzv";
837 };
838 dependencies = [];
839
840 };
841
842 thumbnail-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
843 name = "thumbnail-vim-2017-04-24";
844 src = fetchgit {
845 url = "https://github.com/itchyny/thumbnail.vim";
846 rev = "71cb5d48e59fc77149c1d1036ecd9e39f0b46a00";
847 sha256 = "0b25n28ri6n5rrvgfynv8rm5pzzxpnrnj1l3647pf2fjxd2z2rv5";
848 };
849 dependencies = [];
850
851 };
852
853 vim-ipython = buildVimPluginFrom2Nix { # created by nix#NixDerivation
854 name = "vim-ipython-2015-06-23";
855 src = fetchgit {
856 url = "https://github.com/ivanov/vim-ipython";
857 rev = "42499f094b805b90b683afa5009cee99abd0bb75";
858 sha256 = "10wpfvfs8yv1bvzra4d5zy5glp62gbalpayxx7mkalhr2ccppy3x";
859 };
860 dependencies = [];
861
862 };
863
864 vim-hier = buildVimPluginFrom2Nix { # created by nix#NixDerivation
865 name = "vim-hier-2011-08-27";
866 src = fetchgit {
867 url = "https://github.com/jceb/vim-hier";
868 rev = "0b8c365263551a67404ebd7e528c55e17c1d3de7";
869 sha256 = "118pd9sx1bl9vfr89xrf536hfx4l162a43a1qpwpkqxzb9a3ca7n";
870 };
871 dependencies = [];
872 buildInputs = [ vim ];
873 };
874
875 vim-orgmode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
876 name = "vim-orgmode-2017-04-19";
877 src = fetchgit {
878 url = "https://github.com/jceb/vim-orgmode";
879 rev = "8a5cb51fbb8d89b0151833a6deb654929818a964";
880 sha256 = "0siqzwblads3n69chqsifpgglcda2iz2k40q76llf78fw5ylqd16";
881 };
882 dependencies = [];
883
884 };
885
886 vim-buffergator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
887 name = "vim-buffergator-2017-02-05";
888 src = fetchgit {
889 url = "https://github.com/jeetsukumaran/vim-buffergator";
890 rev = "04dfbc0c78b0a29b340a99d0ff36ecf8f16e017d";
891 sha256 = "1z13qqmvzismz7f6ss2pk956adnqh14df8qrlzk9rgplknm4w6k7";
892 };
893 dependencies = [];
894
895 };
896
897 tslime-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
898 name = "tslime-vim-2016-06-14";
899 src = fetchgit {
900 url = "https://github.com/jgdavey/tslime.vim";
901 rev = "c980c76bbfc9a523fcf1edf08580d0d3a486e8f2";
902 sha256 = "0gifyxwlspfnkni886adwn9kc0dckanjk0097y8pwxh7qbwfydf1";
903 };
904 dependencies = [];
905
906 };
907
908 auto-pairs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
909 name = "auto-pairs-2017-07-03";
910 src = fetchgit {
911 url = "https://github.com/jiangmiao/auto-pairs";
912 rev = "f0019fc6423e7ce7bbd01d196a7e027077687fda";
913 sha256 = "1kzrdq3adwxwm3fw65g05ww9405lwqi368win5kayamyj9i0z7r6";
914 };
915 dependencies = [];
916
917 };
918
919 vim-nerdtree-tabs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
920 name = "vim-nerdtree-tabs-2017-07-04";
921 src = fetchgit {
922 url = "https://github.com/jistr/vim-nerdtree-tabs";
923 rev = "47bbe5afc26f701f08d31b2bbdb660f117367ded";
924 sha256 = "0a1gqdvmpa4gylnb7sxs6zr89i60fl16p477200x18hgh2zd2v02";
925 };
926 dependencies = [];
927
928 };
929
930 zenburn = buildVimPluginFrom2Nix { # created by nix#NixDerivation
931 name = "zenburn-2015-09-18";
932 src = fetchgit {
933 url = "https://github.com/jnurmine/zenburn";
934 rev = "f7847fb1531b91e2b4bb4aed5db3146f07765179";
935 sha256 = "1las12jznf25dkxrjk3s9l70c6wnpjisngmvi83bhw5gvx4c7mq5";
936 };
937 dependencies = [];
938
939 };
940
941 vim-colorstepper = buildVimPluginFrom2Nix { # created by nix#NixDerivation
942 name = "vim-colorstepper-2016-01-28";
943 src = fetchgit {
944 url = "https://github.com/jonbri/vim-colorstepper";
945 rev = "f23ba0d995d41508a2dc9471cf31d3d01a4b5f05";
946 sha256 = "05ykxn0gmh8liz0zv5hb8df1ajggxp88izq3825m0yb3ma3k1jqs";
947 };
948 dependencies = [];
949
950 };
951
952 vim-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
953 name = "vim-xdebug-2012-08-15";
954 src = fetchgit {
955 url = "https://github.com/joonty/vim-xdebug";
956 rev = "a4980fa65f7f159780593ee37c178281691ba2c4";
957 sha256 = "1qh18r0sm4gh95sjbi2hnflvxdl4gk00jyy3n7z4i1gnx9ihxjqw";
958 };
959 dependencies = [];
960 postInstall = false;
961 };
962
963 fzf-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
964 name = "fzf-vim-2017-07-24";
965 src = fetchgit {
966 url = "https://github.com/junegunn/fzf.vim";
967 rev = "685f9aae97072a190a1230a5c79692e15b7f46c9";
968 sha256 = "1064qwypq8hl0dx65fhvx0aq4jp7hc60rzb0vy98zjr3sr4wshbh";
969 };
970 dependencies = [];
971
972 };
973
974 limelight-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
975 name = "limelight-vim-2016-06-24";
976 src = fetchgit {
977 url = "https://github.com/junegunn/limelight.vim";
978 rev = "106fb5749d227a0de72e36068ed72798c6fd48e6";
979 sha256 = "0fp4yp50n5v5zx3a7afh9wip4nwcfhmdgdzwpnl79jvild1z9fgh";
980 };
981 dependencies = [];
982
983 };
984
985 vim-peekaboo = buildVimPluginFrom2Nix { # created by nix#NixDerivation
986 name = "vim-peekaboo-2017-03-20";
987 src = fetchgit {
988 url = "https://github.com/junegunn/vim-peekaboo";
989 rev = "a7c940b15b008afdcea096d3fc4d25e3e431eb49";
990 sha256 = "1rc4hr6vwj2mmrgz8lifxf9rvcw1rb5dahq649yn8ccw03x8zn6m";
991 };
992 dependencies = [];
993
994 };
995
996 vim-eighties = buildVimPluginFrom2Nix { # created by nix#NixDerivation
997 name = "vim-eighties-2016-12-15";
998 src = fetchgit {
999 url = "https://github.com/justincampbell/vim-eighties";
1000 rev = "1a6ea42ead1e31524ec94cfefb6afc1d8dacd170";
1001 sha256 = "1yh1kny28c7f5qm52y7xd5aj4mycksfb0x1zvcb37c73ycdxc1v2";
1002 };
1003 dependencies = [];
1004
1005 };
1006
1007 latex-box = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1008 name = "latex-box-2015-06-01";
1009 src = fetchgit {
1010 url = "https://github.com/latex-box-team/latex-box";
1011 rev = "3c2901e12cb78bfb2be58ba4c62a488612550fe1";
1012 sha256 = "1z4mdy47cpwcdhvy8mr72vhlybxn1y59yd3ixf6ids1bzpkrd7zl";
1013 };
1014 dependencies = [];
1015
1016 };
1017
1018 typescript-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1019 name = "typescript-vim-2017-03-15";
1020 src = fetchgit {
1021 url = "https://github.com/leafgarland/typescript-vim";
1022 rev = "4dc79bd1b0c43c16cae146bee065f2acc6d2b789";
1023 sha256 = "1hm7cpkx7na106xpivzi5cqb322nanpa0sdjmvnkhgll244q5vy4";
1024 };
1025 dependencies = [];
1026
1027 };
1028
1029 vim-jinja = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1030 name = "vim-jinja-2016-11-16";
1031 src = fetchgit {
1032 url = "https://github.com/lepture/vim-jinja";
1033 rev = "8d330a7aaf0763d080dc82204b4aaba6ac0605c6";
1034 sha256 = "1n62ga02rcj7jjgzvwr46pckj59dc1zqahjgampjcwdd8vf4mg3q";
1035 };
1036 dependencies = [];
1037
1038 };
1039
1040 vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1041 name = "vimtex-2017-07-25";
1042 src = fetchgit {
1043 url = "https://github.com/lervag/vimtex";
1044 rev = "1bba731f008a0905c1cf34e185c3f299d1f1759b";
1045 sha256 = "0gcsfdc2rrdaylsqz6hn9smchndb4y22f4sm230ljdf1rda6v57v";
1046 };
1047 dependencies = [];
1048
1049 };
1050
1051 vim-easymotion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1052 name = "vim-easymotion-2017-07-14";
1053 src = fetchgit {
1054 url = "https://github.com/lokaltog/vim-easymotion";
1055 rev = "e4d71c7ba45baf860fdaaf8c06cd9faebdccbd50";
1056 sha256 = "16ww4myvgh7is5fbwm67v87bbdyhldvr9d4vqkvnn8v9mbj7p7vd";
1057 };
1058 dependencies = [];
1059
1060 };
1061
1062 vim-lawrencium = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1063 name = "vim-lawrencium-2017-01-10";
1064 src = fetchgit {
1065 url = "https://github.com/ludovicchabant/vim-lawrencium";
1066 rev = "88077183e1f5a9a1f741aeab7a1374cfed9e917f";
1067 sha256 = "0z31v93wjycq4lqvbl1jzxi7i5i1vl919m4dyyzphybcqrjjpnab";
1068 };
1069 dependencies = [];
1070
1071 };
1072
1073 rainbow = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1074 name = "rainbow-2017-04-21";
1075 src = fetchgit {
1076 url = "https://github.com/luochen1990/rainbow";
1077 rev = "1c45e0f81324641b23d4c21edda4eabeacba031b";
1078 sha256 = "143bkawg4sy1vbizfwb6p9alizyr80sr6incxrz179l9dp9r8frf";
1079 };
1080 dependencies = [];
1081
1082 };
1083
1084 vim-xkbswitch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1085 name = "vim-xkbswitch-2017-03-27";
1086 src = fetchgit {
1087 url = "https://github.com/lyokha/vim-xkbswitch";
1088 rev = "a85ebddb9038e6b05138c48868a319a9e13d1868";
1089 sha256 = "0v0wckkvsj3pd3a5lj35dqwlvgr1kfz0x6rpnx28mzrcg05p19fr";
1090 };
1091 dependencies = [];
1092 patchPhase = ''
1093 substituteInPlace plugin/xkbswitch.vim \
1094 --replace /usr/local/lib/libxkbswitch.so ${xkb_switch}/lib/libxkbswitch.so
1095 '';
1096 buildInputs = [ xkb_switch ];
1097 };
1098
1099 vim-highlightedyank = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1100 name = "vim-highlightedyank-2017-03-25";
1101 src = fetchgit {
1102 url = "https://github.com/machakann/vim-highlightedyank";
1103 rev = "d656e1e62d2b4e1abd66c5f3a13a2be31a5a80ed";
1104 sha256 = "0rcd2q8f49iyv93s5g95brml7sng7lr8k9s5m4mxq3y0m9yf68fd";
1105 };
1106 dependencies = [];
1107
1108 };
1109
1110 Jenkinsfile-vim-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1111 name = "Jenkinsfile-vim-syntax-2017-05-16";
1112 src = fetchgit {
1113 url = "https://github.com/martinda/Jenkinsfile-vim-syntax";
1114 rev = "d3ad4bc4888740c524bfa2f8b3192cfb23ddec3f";
1115 sha256 = "1sw1rwxspa94aak9gq6i1z47cqhkm2nbbj8xlkzbk3c04mqljksf";
1116 };
1117 dependencies = [];
1118
1119 };
1120
1121 forms = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1122 name = "forms-2012-11-28";
1123 src = fetchgit {
1124 url = "https://github.com/megaannum/forms";
1125 rev = "b601e03fe0a3b8a43766231f4a6217e4492b4f75";
1126 sha256 = "19kp1i5c6jmnpbsap9giayqbzlv7vh02mp4mjvicqj9n0nfyay74";
1127 };
1128 dependencies = ["self"];
1129
1130 };
1131
1132 self = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1133 name = "self-2014-05-28";
1134 src = fetchgit {
1135 url = "https://github.com/megaannum/self";
1136 rev = "2ed666b547eddee6ae1fcc63babca4ba0b66a59f";
1137 sha256 = "1gcwn6i5i3msg7hrlzsnv1bs6pm4jz9cff8ppaz2xdj8xv9qy6fn";
1138 };
1139 dependencies = [];
1140
1141 };
1142
1143 vim-startify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1144 name = "vim-startify-2017-06-15";
1145 src = fetchgit {
1146 url = "https://github.com/mhinz/vim-startify";
1147 rev = "7f910ed4367de96310fedc98d5a12b97173a405f";
1148 sha256 = "1l5q8mqqp6gzmxqm5i0lx6lbm181vmkcg8w24ypa77vnid0ihd93";
1149 };
1150 dependencies = [];
1151
1152 };
1153
1154 vim-indent-object = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1155 name = "vim-indent-object-2017-03-23";
1156 src = fetchgit {
1157 url = "https://github.com/michaeljsmith/vim-indent-object";
1158 rev = "41d700f14b3decccdde421fbfe49e95a084a2f89";
1159 sha256 = "12mi4n5abfxx7xjl46aw400acgrjf1fxjgzak763l874y0whf5v2";
1160 };
1161 dependencies = [];
1162
1163 };
1164
1165 ack-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1166 name = "ack-vim-2017-05-07";
1167 src = fetchgit {
1168 url = "https://github.com/mileszs/ack.vim";
1169 rev = "a16a9b63eb85cc0960a7f25c54647ac1f99f3360";
1170 sha256 = "09bwawm2csliancl281y6wgalrrmaqq7d0baz4dq1cw18x657mk7";
1171 };
1172 dependencies = [];
1173
1174 };
1175
1176 vim-yapf = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1177 name = "vim-yapf-2017-03-21";
1178 src = fetchgit {
1179 url = "https://github.com/mindriot101/vim-yapf";
1180 rev = "324380d77c9cf8e46e22b2e4391702273a53f563";
1181 sha256 = "0vsd53k5k8absc60qka8nlj2ij6k4zgff2a65ixc7vqcmawxr3nw";
1182 };
1183 dependencies = [];
1184 buildPhase = ''
1185 substituteInPlace ftplugin/python_yapf.vim \
1186 --replace '"yapf"' '"${pythonPackages.yapf}/bin/yapf"'
1187 '';
1188 };
1189
1190 lushtags = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1191 name = "lushtags-2017-04-19";
1192 src = fetchgit {
1193 url = "https://github.com/mkasa/lushtags";
1194 rev = "fd7fa5a0162d9aa159559880d5ba4731e180eeaf";
1195 sha256 = "1si5n07k4r8kji4whglav9q59ksv6bi5v58xbpc2l5bavlk8kn6n";
1196 };
1197 dependencies = [];
1198
1199 };
1200
1201 hlint-refactor-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1202 name = "hlint-refactor-vim-2015-12-05";
1203 src = fetchgit {
1204 url = "https://github.com/mpickering/hlint-refactor-vim";
1205 rev = "fffb044ecef854a82c5c2efda252e09044ba03e0";
1206 sha256 = "0z8d31arfy9aidg1dwj5msnnx799d9r7njkgh51z695w6ayxn6p8";
1207 };
1208 dependencies = [];
1209
1210 };
1211
1212 vim-indent-guides = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1213 name = "vim-indent-guides-2017-07-03";
1214 src = fetchgit {
1215 url = "https://github.com/nathanaelkane/vim-indent-guides";
1216 rev = "b40687195c01caf40f62d20093296590b48e3a75";
1217 sha256 = "17hc3bdb707lkg0kyac2czjjijdrzarnh6sr78s9rqpwrj3fj4i4";
1218 };
1219 dependencies = [];
1220
1221 };
1222
1223 vim-stylish-haskell = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1224 name = "vim-stylish-haskell-2015-05-10";
1225 src = fetchgit {
1226 url = "https://github.com/nbouscal/vim-stylish-haskell";
1227 rev = "c664376ba814de3f87cb7641f90b2c6a9dd53671";
1228 sha256 = "1xm5ark2mwphznv3xsyzgcldnr52i5jzk1pfqdh0080j07aama8j";
1229 };
1230 dependencies = [];
1231
1232 };
1233
1234 haskell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1235 name = "haskell-vim-2017-07-18";
1236 src = fetchgit {
1237 url = "https://github.com/neovimhaskell/haskell-vim";
1238 rev = "21c48768f1c5986d4f2351784b119eb9a5f925db";
1239 sha256 = "1dd18plhahkdz782d7y8w8265di2wvs78w2q2hx2m68686abmn0h";
1240 };
1241 dependencies = [];
1242
1243 };
1244
1245 cpsm = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1246 name = "cpsm-2017-02-12";
1247 src = fetchgit {
1248 url = "https://github.com/nixprime/cpsm";
1249 rev = "8e61bf3e30868c57ad7cf1fe4315b2352d61467c";
1250 sha256 = "0qcc10dx48wyvcgz9q3nid9l1wxvl9m97608s289lj4zps8iqpcs";
1251 };
1252 dependencies = [];
1253 buildInputs = [
1254 python3
1255 stdenv
1256 cmake
1257 boost
1258 icu
1259 ];
1260 buildPhase = ''
1261 patchShebangs .
1262 export PY3=ON
1263 ./install.sh
1264 '';
1265 };
1266
1267 shabadou-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1268 name = "shabadou-vim-2016-07-19";
1269 src = fetchgit {
1270 url = "https://github.com/osyo-manga/shabadou.vim";
1271 rev = "7d4bfed1ea8985ae125df3d1403cc19e252443e1";
1272 sha256 = "1kvik1yf7yjg9jdmdw38yhkksxg0n3nry02banwik7wgjnpvg870";
1273 };
1274 dependencies = [];
1275
1276 };
1277
1278 vim-watchdogs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1279 name = "vim-watchdogs-2017-06-23";
1280 src = fetchgit {
1281 url = "https://github.com/osyo-manga/vim-watchdogs";
1282 rev = "22a08dcd33223ddbe95c977ca72e77d62d2c75d9";
1283 sha256 = "0d3i39cz5kpps2gxlbz2l73bz0rs67lhh6qrpzl3a2p014hixbyi";
1284 };
1285 dependencies = [];
1286
1287 };
1288
1289 vim-markdown = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1290 name = "vim-markdown-2017-05-10";
1291 src = fetchgit {
1292 url = "https://github.com/plasticboy/vim-markdown";
1293 rev = "3fcde7215e22913f004c2836fd46ff61746be6db";
1294 sha256 = "0ymbs7235zi5hwyzc0vaikb3n6jwj6xarmgjj4lpf4wbsa1212yy";
1295 };
1296 dependencies = [];
1297
1298 };
1299
1300 python-mode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1301 name = "python-mode-2017-07-04";
1302 src = fetchgit {
1303 url = "https://github.com/python-mode/python-mode";
1304 rev = "d2dead6ce9d900b26dbf1a06c52969f4194eda64";
1305 sha256 = "1iq26a2l9maapz3433pwywmqla4wf7jass7s7bh32h10m2fh88a0";
1306 };
1307 dependencies = [];
1308
1309 };
1310
1311 vim-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1312 name = "vim-racer-2017-07-19";
1313 src = fetchgit {
1314 url = "https://github.com/racer-rust/vim-racer";
1315 rev = "c729b895885c9ef548ed4f9c1cec7c7c741b5869";
1316 sha256 = "1r0idhc7yj5r4h2rfmbb5p0i1yckr3mckif3ijy6sm9rhwi242sw";
1317 };
1318 dependencies = [];
1319
1320 };
1321
1322 purescript-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1323 name = "purescript-vim-2016-08-31";
1324 src = fetchgit {
1325 url = "https://github.com/raichoo/purescript-vim";
1326 rev = "2c55bcefd63bc40ed2aa9d6ce9d89a590dfa3477";
1327 sha256 = "1y96w8p865gd6zr29wpxn1qwsk833y06x1qp586gylgi0jp1ybzv";
1328 };
1329 dependencies = [];
1330
1331 };
1332
1333 vim-grammarous = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1334 name = "vim-grammarous-2017-07-02";
1335 src = fetchgit {
1336 url = "https://github.com/rhysd/vim-grammarous";
1337 rev = "d117cd139b58319d8ac94f2fd36ee548b6ea1e88";
1338 sha256 = "0a5a65j9a3s54z9asjmfbqsvawx014bq772jqgpsxww53lap3s5x";
1339 };
1340 dependencies = [];
1341
1342 };
1343
1344 vim-puppet = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1345 name = "vim-puppet-2017-07-02";
1346 src = fetchgit {
1347 url = "https://github.com/rodjek/vim-puppet";
1348 rev = "cb1863af2ba4de9fb1c1d952d82692502348fb92";
1349 sha256 = "0a3q6f8jplxbvpjaz9vnh589al64vg567nc00xabp46vcm83nk4x";
1350 };
1351 dependencies = [];
1352
1353 };
1354
1355 rust-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1356 name = "rust-vim-2017-07-14";
1357 src = fetchgit {
1358 url = "https://github.com/rust-lang/rust.vim";
1359 rev = "5a6133680ecf9e22eeba35c35e62ea6210225b02";
1360 sha256 = "0mxzl8lghq7bnwp8qs3haxq83ds5q8s8br0ajn40a3c3ns2hkhla";
1361 };
1362 dependencies = [];
1363
1364 };
1365
1366 neoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1367 name = "neoformat-2017-07-22";
1368 src = fetchgit {
1369 url = "https://github.com/sbdchd/neoformat";
1370 rev = "a0c8e1f3c8b917afd175fc9ed9b2685ce5f952e9";
1371 sha256 = "1w2m54ag1g1czfwa8y2vq4p05wysvb1qhgfnbzqvlwb1mn9sh2kf";
1372 };
1373 dependencies = [];
1374
1375 };
1376
1377 deoplete-rust = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1378 name = "deoplete-rust-2017-07-18";
1379 src = fetchgit {
1380 url = "https://github.com/sebastianmarkow/deoplete-rust";
1381 rev = "0a86e502113910c33448b337c4d50cabea120d25";
1382 sha256 = "0wsck83jns40ny3740vwjhc8g5bh6zl71hkirbjxy6n4xgixa54h";
1383 };
1384 dependencies = [];
1385
1386 };
1387
1388 vim-polyglot = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1389 name = "vim-polyglot-2017-06-12";
1390 src = fetchgit {
1391 url = "https://github.com/sheerun/vim-polyglot";
1392 rev = "8eab5f5403afc1c33a7593459a27f7ff625fa60b";
1393 sha256 = "0q2xfmqk5iad6gv8zzlpcv48xpv7lwr6mswc7mdllzkgaqilz75g";
1394 };
1395 dependencies = [];
1396
1397 };
1398
1399 neco-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1400 name = "neco-vim-2017-07-23";
1401 src = fetchgit {
1402 url = "https://github.com/shougo/neco-vim";
1403 rev = "7c188577ebf65bfb9e27affce8158e0f5af2ec3e";
1404 sha256 = "1jb9vw2gkag2fg18vxqj3rc6y4zqgrn0kf6vb5z8kgkbsam0cybk";
1405 };
1406 dependencies = [];
1407
1408 };
1409
1410 neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1411 name = "neocomplete-vim-2017-07-23";
1412 src = fetchgit {
1413 url = "https://github.com/shougo/neocomplete.vim";
1414 rev = "d8caad4fc14fc1be5272bf6ebc12048212d67d2c";
1415 sha256 = "1ab1p4w6187r15alb34mnvaq43mikk7ic05ysgilx4f4zz6dgz5y";
1416 };
1417 dependencies = [];
1418
1419 };
1420
1421 neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1422 name = "neosnippet-snippets-2017-07-05";
1423 src = fetchgit {
1424 url = "https://github.com/shougo/neosnippet-snippets";
1425 rev = "b89c544264912b064c79da2a90fc5d4e69d621b2";
1426 sha256 = "1cqgagzxl559mf06kkggdm90g27is0x80qqrrha09ng16hf6qf7a";
1427 };
1428 dependencies = [];
1429
1430 };
1431
1432 neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1433 name = "neosnippet-vim-2017-07-15";
1434 src = fetchgit {
1435 url = "https://github.com/shougo/neosnippet.vim";
1436 rev = "4bf88a9e497dc7180e9fe58551ad340de0192f39";
1437 sha256 = "0mj14cninszfw95zb0rwcmzf40851i49lj6vk8gz4iq9y0hxsnx7";
1438 };
1439 dependencies = [];
1440
1441 };
1442
1443 unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1444 name = "unite-vim-2017-07-01";
1445 src = fetchgit {
1446 url = "https://github.com/shougo/unite.vim";
1447 rev = "ad15f96365b5cb43a45d0ca779df6a497f954f15";
1448 sha256 = "0pigwfwyas4zdzrazk08p9bnbmi51np4gb0mf5dy434glw9rrvjz";
1449 };
1450 dependencies = [];
1451
1452 };
1453
1454 vimproc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1455 name = "vimproc-vim-2017-07-22";
1456 src = fetchgit {
1457 url = "https://github.com/shougo/vimproc.vim";
1458 rev = "03a38f283ca9e15784e8fea84e8afc5d633b9639";
1459 sha256 = "0ypffp724f3qp0mryxmmmi1ci0bnz34nnr7yi3c893pd9mpkrjjr";
1460 };
1461 dependencies = [];
1462 buildInputs = [ which ];
1463
1464 buildPhase = ''
1465 substituteInPlace autoload/vimproc.vim \
1466 --replace vimproc_mac.so vimproc_unix.so \
1467 --replace vimproc_linux64.so vimproc_unix.so \
1468 --replace vimproc_linux32.so vimproc_unix.so
1469 make -f make_unix.mak
1470 '';
1471 };
1472
1473 vimshell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1474 name = "vimshell-vim-2016-12-14";
1475 src = fetchgit {
1476 url = "https://github.com/shougo/vimshell.vim";
1477 rev = "d0c5bef010237855b4de25863bc54895effe5d7a";
1478 sha256 = "13szswi1n04w66c4h701y47xblrba8ysxjwvmnfxb0pyd1x3gzgz";
1479 };
1480 dependencies = [ "vimproc-vim" ];
1481 };
1482
1483 gundo-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1484 name = "gundo-vim-2017-05-09";
1485 src = fetchgit {
1486 url = "https://github.com/sjl/gundo.vim";
1487 rev = "46c443ee9d5854320eb965a1fdee781ba83a070e";
1488 sha256 = "0adk7agzmbfv342zw6lc8jad6yjs1wap4c0ca98s0qm2bs0r1hl2";
1489 };
1490 dependencies = [];
1491
1492 };
1493
1494 alchemist-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1495 name = "alchemist-vim-2017-07-23";
1496 src = fetchgit {
1497 url = "https://github.com/slashmili/alchemist.vim";
1498 rev = "35b0e59b4ae45baeef7fc46b6faf9b96515d35cb";
1499 sha256 = "021iwhnjjsfhmpbimm91jgmcrlj1hjh8rxcdqxwcwxc92h73wl58";
1500 };
1501 dependencies = [];
1502
1503 };
1504
1505 vim-hardtime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1506 name = "vim-hardtime-2017-03-31";
1507 src = fetchgit {
1508 url = "https://github.com/takac/vim-hardtime";
1509 rev = "d9128568afa62947b7ac8f12c22d88e3de526a6b";
1510 sha256 = "097wzfh4n4fnsq2gx4hbmyr731ciky8qcai5aiyh2baybvwshmr5";
1511 };
1512 dependencies = [];
1513
1514 };
1515
1516 vim-expand-region = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1517 name = "vim-expand-region-2013-08-19";
1518 src = fetchgit {
1519 url = "https://github.com/terryma/vim-expand-region";
1520 rev = "966513543de0ddc2d673b5528a056269e7917276";
1521 sha256 = "0l30wjlk4vxr16f1njnvf8aw9yg9p9jisvcxbcg3znsq5q8ix6zv";
1522 };
1523 dependencies = [];
1524
1525 };
1526
1527 vimpreviewpandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1528 name = "vimpreviewpandoc-2016-03-07";
1529 src = fetchgit {
1530 url = "https://github.com/tex/vimpreviewpandoc";
1531 rev = "b109d41ad6478df5ec7f1311950c6efca66f36e4";
1532 sha256 = "1gx326xarjs3qjygpkrknncad90crjqfx8v6pir4r7k1hl7dfxc4";
1533 };
1534 dependencies = [];
1535
1536 };
1537
1538 vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1539 name = "vim-quickrun-2017-03-21";
1540 src = fetchgit {
1541 url = "https://github.com/thinca/vim-quickrun";
1542 rev = "98889e1fc0f7136262c4dd7c312b82879df16486";
1543 sha256 = "1drv53fwp24z0yb79lj2nyapyndw1yirg202hg7px9jvxjr4k8a0";
1544 };
1545 dependencies = [];
1546
1547 };
1548
1549 molokai = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1550 name = "molokai-2015-11-11";
1551 src = fetchgit {
1552 url = "https://github.com/tomasr/molokai";
1553 rev = "c67bdfcdb31415aa0ade7f8c003261700a885476";
1554 sha256 = "1piszjr5kyw43ac1f0jh9z88g824xknshrkchbys9qxlz7pd831s";
1555 };
1556 dependencies = [];
1557
1558 };
1559
1560 vim-dispatch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1561 name = "vim-dispatch-2017-07-12";
1562 src = fetchgit {
1563 url = "https://github.com/tpope/vim-dispatch";
1564 rev = "14a1695f844a320dd28a7706710325773d1046a8";
1565 sha256 = "1whmqikg5ch523ffs2apkrd4clwl7s0y98gmxgaqq6gm2fa2wmfp";
1566 };
1567 dependencies = [];
1568
1569 };
1570
1571 vim-eunuch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1572 name = "vim-eunuch-2017-06-08";
1573 src = fetchgit {
1574 url = "https://github.com/tpope/vim-eunuch";
1575 rev = "b536b887072ff3cc382842ce9f675ec222302f4f";
1576 sha256 = "0vp037kb12mawy186cm384m5hl0p051rihhm1jr2qck0vwaps58p";
1577 };
1578 dependencies = [];
1579
1580 };
1581
1582 vim-repeat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1583 name = "vim-repeat-2017-04-21";
1584 src = fetchgit {
1585 url = "https://github.com/tpope/vim-repeat";
1586 rev = "070ee903245999b2b79f7386631ffd29ce9b8e9f";
1587 sha256 = "1grsaaar2ng1049gc3r8wbbp5imp31z1lcg399vhh3k36y34q213";
1588 };
1589 dependencies = [];
1590
1591 };
1592
1593 vim-speeddating = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1594 name = "vim-speeddating-2017-05-24";
1595 src = fetchgit {
1596 url = "https://github.com/tpope/vim-speeddating";
1597 rev = "a418667791f03694065948342f2d6c5cca8d0f32";
1598 sha256 = "1wm33izawazh0dy70zjk6rkg30yrlldba5r1gypnr4barps702gw";
1599 };
1600 dependencies = [];
1601
1602 };
1603
1604 hasksyn = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1605 name = "hasksyn-2014-09-03";
1606 src = fetchgit {
1607 url = "https://github.com/travitch/hasksyn";
1608 rev = "c434040bf13a17ca20a551223021b3ace7e453b9";
1609 sha256 = "09998lnfcshqis5m062wlag6y476imq9jday9gp4ayjjl1cp3cwx";
1610 };
1611 dependencies = [];
1612
1613 };
1614
1615 vim-haskellconceal = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1616 name = "vim-haskellconceal-2017-06-15";
1617 src = fetchgit {
1618 url = "https://github.com/twinside/vim-haskellconceal";
1619 rev = "802f82a5afee56e9e1251e6f756104a3bd114234";
1620 sha256 = "1kh6853hi4rgl4z1xs8kz9l1q9w7lh0r42y2m0rabfpr6yh3091r";
1621 };
1622 dependencies = [];
1623
1624 };
1625
1626 youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1627 name = "youcompleteme-2017-07-24";
1628 src = fetchgit {
1629 url = "https://github.com/valloric/youcompleteme";
1630 rev = "998303e2fd5e762c3bc2aee8c23af1b388fb459c";
1631 sha256 = "158wnxgnjir4n5p1jnpxqq4qwl6hapd9kpdd3gklihxvbj1zqskc";
1632 };
1633 dependencies = [];
1634 buildPhase = ''
1635 substituteInPlace plugin/youcompleteme.vim \
1636 --replace "'ycm_path_to_python_interpreter', '''" \
1637 "'ycm_path_to_python_interpreter', '${python}/bin/python'"
1638
1639 rm -r third_party/ycmd
1640 ln -s ${ycmd}/lib/ycmd third_party
1641 '';
1642
1643 meta = {
1644 description = "Fastest non utf-8 aware word and C completion engine for Vim";
1645 homepage = http://github.com/Valloric/YouCompleteMe;
1646 license = stdenv.lib.licenses.gpl3;
1647 maintainers = with stdenv.lib.maintainers; [marcweber jagajaga];
1648 platforms = stdenv.lib.platforms.unix;
1649 };
1650 };
1651
1652 vim-airline-themes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1653 name = "vim-airline-themes-2017-07-10";
1654 src = fetchgit {
1655 url = "https://github.com/vim-airline/vim-airline-themes";
1656 rev = "5d75d76ca2e17edd68f89ac4f547009d477570c6";
1657 sha256 = "15vq8fjax69wi447vhirj7vzqxppxcpvq2v8dhi0pf39gbzcd229";
1658 };
1659 dependencies = [];
1660
1661 };
1662
1663 vim-pandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1664 name = "vim-pandoc-2017-04-26";
1665 src = fetchgit {
1666 url = "https://github.com/vim-pandoc/vim-pandoc";
1667 rev = "fc209c66e937172efdd6db39ee64fcb3980ce329";
1668 sha256 = "19x8hf78833hcg508sn5a4g79h47ynqzzas998rqr2cmmpsc4mzs";
1669 };
1670 dependencies = [];
1671
1672 };
1673
1674 vim-pandoc-after = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1675 name = "vim-pandoc-after-2015-06-01";
1676 src = fetchgit {
1677 url = "https://github.com/vim-pandoc/vim-pandoc-after";
1678 rev = "4377665e5c98f29ea838deb3b942200b8dd096ef";
1679 sha256 = "1379g174pvsaw1wdv1n18gby84sv59rsamfcgq9bqd4kg54g6h3j";
1680 };
1681 dependencies = [];
1682
1683 };
1684
1685 vim-pandoc-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1686 name = "vim-pandoc-syntax-2017-04-13";
1687 src = fetchgit {
1688 url = "https://github.com/vim-pandoc/vim-pandoc-syntax";
1689 rev = "56e8e41ef863a0a7d33d85c3c0c895aa6e9e62d3";
1690 sha256 = "19ll4zrw5yd0frgsbi7pg9b68lmy4bfiwbnwgzii7inifrqsykfw";
1691 };
1692 dependencies = [];
1693
1694 };
1695
1696 Colour-Sampler-Pack = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1697 name = "Colour-Sampler-Pack-2012-11-29";
1698 src = fetchgit {
1699 url = "https://github.com/vim-scripts/Colour-Sampler-Pack";
1700 rev = "05cded87b2ef29aaa9e930230bb88e23abff4441";
1701 sha256 = "03v2r18sfgs0xbgy9p56pxfdg0lsk6m7wyr5hw63wm1nzpwiipg3";
1702 };
1703 dependencies = [];
1704
1705 };
1706
1707 Rename = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1708 name = "Rename-2011-08-30";
1709 src = fetchgit {
1710 url = "https://github.com/vim-scripts/Rename";
1711 rev = "b240f28d2ede65fa77cd99fe045efe79202f7a34";
1712 sha256 = "1d1myg4zyc281zcc1ba9idbgcgxndb4a0jwqr4yqxhhzdgszw46r";
1713 };
1714 dependencies = [];
1715
1716 };
1717
1718 ReplaceWithRegister = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1719 name = "ReplaceWithRegister-2014-10-30";
1720 src = fetchgit {
1721 url = "https://github.com/vim-scripts/ReplaceWithRegister";
1722 rev = "832efc23111d19591d495dc72286de2fb0b09345";
1723 sha256 = "0mb0sx85j1k59b1zz95r4vkq4kxlb4krhncq70mq7fxrs5bnhq8g";
1724 };
1725 dependencies = [];
1726
1727 };
1728
1729 a-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1730 name = "a-vim-2010-11-06";
1731 src = fetchgit {
1732 url = "https://github.com/vim-scripts/a.vim";
1733 rev = "2cbe946206ec622d9d8cf2c99317f204c4d41885";
1734 sha256 = "0h62v9z5bh9xmaq22pqdb3z79i84a5rknqm68mjpy7nq7s3q42fa";
1735 };
1736 dependencies = [];
1737
1738 };
1739
1740 align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1741 name = "align-2012-08-07";
1742 src = fetchgit {
1743 url = "https://github.com/vim-scripts/align";
1744 rev = "787662fe90cd057942bc5b682fd70c87e1a9dd77";
1745 sha256 = "0acacr572kfh7jvavbw61q5pkwrpi1albgancma063rpax1pddgp";
1746 };
1747 dependencies = [];
1748
1749 };
1750
1751 argtextobj-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1752 name = "argtextobj-vim-2010-10-17";
1753 src = fetchgit {
1754 url = "https://github.com/vim-scripts/argtextobj.vim";
1755 rev = "f3fbe427f7b4ec436416a5816d714dc917dc530b";
1756 sha256 = "1l4jh5hdmky1qj5z26jpnk49a6djjcvzyyr6pknrrgb8rzkiln48";
1757 };
1758 dependencies = [];
1759
1760 };
1761
1762 changeColorScheme-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1763 name = "changeColorScheme-vim-2010-10-17";
1764 src = fetchgit {
1765 url = "https://github.com/vim-scripts/changeColorScheme.vim";
1766 rev = "b041d49f828629d72f2232531a230d1ec5de2405";
1767 sha256 = "0pybhsg9k9252d4ifdc4gsar8lkmfzbvs6xkzqq1m6f35l9wqk09";
1768 };
1769 dependencies = [];
1770
1771 };
1772
1773 random-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1774 name = "random-vim-2010-10-17";
1775 src = fetchgit {
1776 url = "https://github.com/vim-scripts/random.vim";
1777 rev = "b2d85eb24a38074eab37a5acf2a295e1f2ad8989";
1778 sha256 = "1lzy2cq4jcrsqyxlnbnd0y6j4mabm09bi7q22lf6vinqlb84w7sp";
1779 };
1780 dependencies = [];
1781
1782 };
1783
1784 tabmerge = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1785 name = "tabmerge-2010-10-17";
1786 src = fetchgit {
1787 url = "https://github.com/vim-scripts/tabmerge";
1788 rev = "074e5f06f26e7108a0570071a0f938a821768c06";
1789 sha256 = "0prkyza1n49cdaslcr57w8zv15vw78mlqbzib2xipmawzjq02idq";
1790 };
1791 dependencies = [];
1792
1793 };
1794
1795 wombat256-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1796 name = "wombat256-vim-2010-10-17";
1797 src = fetchgit {
1798 url = "https://github.com/vim-scripts/wombat256.vim";
1799 rev = "8734ba45dcf5e38c4d2686b35c94f9fcb30427e2";
1800 sha256 = "01fdvfwdfqn5xi88lfanb4lb6jmn1ma6wq6d9jj2x7qamdbpvsrg";
1801 };
1802 dependencies = [];
1803
1804 };
1805
1806 ale = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1807 name = "ale-2017-07-23";
1808 src = fetchgit {
1809 url = "https://github.com/w0rp/ale";
1810 rev = "a0059cfe0362e8ba55bad1f4fa8a310c74b55280";
1811 sha256 = "0hjli8ww0i4yxa7gxiyvy9xgc9s8krr7vhdh8036nwwnrzrmcc5h";
1812 };
1813 dependencies = [];
1814
1815 };
1816
1817 vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1818 name = "vim-wakatime-2017-07-03";
1819 src = fetchgit {
1820 url = "https://github.com/wakatime/vim-wakatime";
1821 rev = "0c5368cf01f4d452a05eb5e5569e6fe78dca2657";
1822 sha256 = "025d0gz0fs3jb062jp7js11b8vb20zyxa32llqsjkyy4gr8kv53b";
1823 };
1824 dependencies = [];
1825 buildInputs = [ python ];
1826 };
1827
1828 command-t = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1829 name = "command-t-2017-06-23";
1830 src = fetchgit {
1831 url = "https://github.com/wincent/command-t";
1832 rev = "29f2606a9665058a98b56f2d8062ba614a3f246e";
1833 sha256 = "0q6kqjy88w1478k2q6vqyyid69whd72746i0cd33xnslgykwm2hn";
1834 };
1835 dependencies = [];
1836 buildInputs = [ perl ruby git ];
1837 buildPhase = ''
1838 pushd ruby/command-t
1839 gem build ./command-t.gemspec
1840 popd
1841 '';
1842 };
1843
1844 vim-easytags = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1845 name = "vim-easytags-2015-07-01";
1846 src = fetchgit {
1847 url = "https://github.com/xolox/vim-easytags";
1848 rev = "72a8753b5d0a951e547c51b13633f680a95b5483";
1849 sha256 = "0i8ha1fa5d860b1mi0xp8kwsgb0b9vbzcg1bldzv6s5xd9yyi12i";
1850 };
1851 dependencies = ["vim-misc"];
1852
1853 };
1854
1855 vim-misc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1856 name = "vim-misc-2015-05-21";
1857 src = fetchgit {
1858 url = "https://github.com/xolox/vim-misc";
1859 rev = "3e6b8fb6f03f13434543ce1f5d24f6a5d3f34f0b";
1860 sha256 = "0rd9788dyfc58py50xbiaz5j7nphyvf3rpp3yal7yq2dhf0awwfi";
1861 };
1862 dependencies = [];
1863
1864 };
1865
1866 nim-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1867 name = "nim-vim-2016-05-19";
1868 src = fetchgit {
1869 url = "https://github.com/zah/nim.vim";
1870 rev = "dcf25798f4a3f75e9538f9915959061edbff97cf";
1871 sha256 = "1jaiqkspfz2a4ny130dl0h6x9752flpcwwy0kscrqmlqf5fqiyvm";
1872 };
1873 dependencies = [];
1874
1875 };
1876
1877 deoplete-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1878 name = "deoplete-go-2017-05-26";
1879 src = fetchgit {
1880 url = "https://github.com/zchee/deoplete-go";
1881 rev = "aef73fdf275053a6fb00c3f66d1f18821bc74bd3";
1882 sha256 = "1ixav3d78wy9zs9a8hg8yqk812srkbkwsaz17lg5sxjq6azljgvq";
1883 };
1884 dependencies = [];
1885 buildInputs = [ python3 ];
1886 buildPhase = ''
1887 pushd ./rplugin/python3/deoplete/ujson
1888 python3 setup.py build --build-base=$PWD/build --build-lib=$PWD/build
1889 popd
1890 find ./rplugin/ -name "ujson*.so" -exec mv -v {} ./rplugin/python3/ \;
1891 '';
1892 };
1893
1894 deoplete-jedi = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1895 name = "deoplete-jedi-2017-07-16";
1896 src = fetchgit {
1897 url = "https://github.com/zchee/deoplete-jedi";
1898 rev = "56528fd1238bbf2f9363f16710d0936703dc9eab";
1899 sha256 = "1kwwbr1w3865rlqs04hpxrqv67a14mzyf85pa29djmryi2156wxb";
1900 };
1901 dependencies = [];
1902
1903 };
1904
1905 goyo = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1906 name = "goyo-2017-06-01";
1907 src = fetchgit {
1908 url = "git://github.com/junegunn/goyo.vim";
1909 rev = "5b8bd0378758c1d9550d8429bef24b3d6d78b592";
1910 sha256 = "0jh2gyf6v1vl12hygzwylzsj1ivx7r6xrd75k2wfsy91b2pm9srj";
1911 };
1912 dependencies = [];
1913
1914 };
1915
1916 gruvbox = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1917 name = "gruvbox-2016-09-28";
1918 src = fetchgit {
1919 url = "git://github.com/morhetz/gruvbox";
1920 rev = "127c9d14d4bac1bac31e328b835a8919a255789c";
1921 sha256 = "19wg9143wvlynblpxm0cnk3ars2hgss3y745hligqgvfy308f7sm";
1922 };
1923 dependencies = [];
1924
1925 };
1926
1927 matchit-zip = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1928 name = "matchit-zip";
1929 src = fetchurl {
1930 url = "http://www.vim.org/scripts/download_script.php?src_id=8196";
1931 name = "matchit.zip";
1932 sha256 = "1bbm8j1bhb70kagwdimwy9vcvlrz9ax5bk2a7wrmn4cy87f9xj4l";
1933 };
1934 buildInputs = [ unzip ];
1935 dependencies = [];
1936 meta = {
1937 url = "http://www.vim.org/scripts/script.php?script_id=39";
1938 };
1939
1940 unpackPhase = ''
1941 (
1942 sourceRoot=d
1943 mkdir $sourceRoot; cd $sourceRoot;
1944 unzip $src
1945 )
1946 '';
1947 };
1948
1949 pathogen = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1950 name = "pathogen-2017-05-27";
1951 src = fetchgit {
1952 url = "git://github.com/tpope/vim-pathogen";
1953 rev = "ddfb1f14d7597e6aedc749be06b559a673c437ab";
1954 sha256 = "0fdd88gj75bzq6ifaddz3sl71w8ljnnci9npm04jmyvf048gnjg8";
1955 };
1956 dependencies = [];
1957
1958 };
1959
1960 quickfixstatus = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1961 name = "quickfixstatus-2011-09-02";
1962 src = fetchgit {
1963 url = "git://github.com/dannyob/quickfixstatus";
1964 rev = "fd3875b914fc51bbefefa8c4995588c088163053";
1965 sha256 = "16vxhvyxq51y7wnx0c1fmdi2yb6kfr1pxijq65gxj8qwvbak2s3v";
1966 };
1967 dependencies = [];
1968
1969 };
1970
1971 rainbow_parentheses = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1972 name = "rainbow_parentheses-2013-03-04";
1973 src = fetchgit {
1974 url = "git://github.com/kien/rainbow_parentheses.vim";
1975 rev = "eb8baa5428bde10ecc1cb14eed1d6e16f5f24695";
1976 sha256 = "1qw84imlhq4654mxazj7j3sp5g1j3yjxi496i08iix06dm15m5s7";
1977 };
1978 dependencies = [];
1979
1980 };
1981
1982 sensible = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1983 name = "sensible-2017-05-09";
1984 src = fetchgit {
1985 url = "git://github.com/tpope/vim-sensible";
1986 rev = "49ee364222dc2a5a00dddf89fd61880e3e39d46a";
1987 sha256 = "0x9zn547hzzxjzplr2rkzhydh2y0a4fdkrwmdvw2yp203msyhcjx";
1988 };
1989 dependencies = [];
1990
1991 };
1992
1993 sleuth = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1994 name = "sleuth-2017-07-23";
1995 src = fetchgit {
1996 url = "git://github.com/tpope/vim-sleuth";
1997 rev = "dfe0a33253c61dd8fac455baea4ec492e6cf0fe3";
1998 sha256 = "0576k4l2wbzy9frvv268vdix4k6iz9pw6n6626ifvg8hk6gbc5g9";
1999 };
2000 dependencies = [];
2001
2002 };
2003
2004 snipmate = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2005 name = "snipmate-2017-04-20";
2006 src = fetchgit {
2007 url = "git://github.com/garbas/vim-snipmate";
2008 rev = "a9802f2351910f64b70fb10b63651e6ff6b8125e";
2009 sha256 = "1l7sc6lf66pkiy18aq9s3wk1dmvvvsy1063cc0bxich9xa8m34bj";
2010 };
2011 dependencies = ["vim-addon-mw-utils" "tlib"];
2012
2013 };
2014
2015 sourcemap = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016 name = "sourcemap-2012-09-19";
2017 src = fetchgit {
2018 url = "git://github.com/chikatoike/sourcemap.vim";
2019 rev = "0dd82d40faea2fdb0771067f46c01deb41610ba1";
2020 sha256 = "1gcgnynallz420911fdfm0ccbv3zs78p69nnh2ls1r4vlfp7g350";
2021 };
2022 dependencies = [];
2023
2024 };
2025
2026 surround = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2027 name = "surround-2016-06-01";
2028 src = fetchgit {
2029 url = "git://github.com/tpope/vim-surround";
2030 rev = "e49d6c2459e0f5569ff2d533b4df995dd7f98313";
2031 sha256 = "1v0q2f1n8ngbja3wpjvqp2jh89pb5ij731qmm18k41nhgz6hhm46";
2032 };
2033 dependencies = [];
2034
2035 };
2036
2037 table-mode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2038 name = "table-mode-2017-04-20";
2039 src = fetchgit {
2040 url = "git://github.com/dhruvasagar/vim-table-mode";
2041 rev = "4e41af8e5f0bf53326d1b83c2feb1eff89fe90d4";
2042 sha256 = "0l83j3963lzkmn54vcagkwm2rhk96cl9v42l5r7zcgjign28cfzw";
2043 };
2044 dependencies = [];
2045
2046 };
2047
2048 taglist = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2049 name = "taglist";
2050 src = fetchurl {
2051 url = "http://www.vim.org/scripts/download_script.php?src_id=19574";
2052 name = "taglist_46.zip";
2053 sha256 = "18cbv462vwg7vip2p99qlahm99hswav96cj4ki227kyi05q2lkjj";
2054 };
2055 buildInputs = [ unzip ];
2056 dependencies = [];
2057 meta = {
2058 url = "http://www.vim.org/scripts/script.php?script_id=273";
2059 };
2060
2061 setSourceRoot = ''
2062 export sourceRoot=taglist
2063 mkdir taglist
2064 mv doc taglist
2065 mv plugin taglist
2066 '';
2067 };
2068
2069 tlib = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2070 name = "tlib-2017-05-20";
2071 src = fetchgit {
2072 url = "git://github.com/tomtom/tlib_vim";
2073 rev = "6f9d75b54478bcaab722d33cbec69d8a1fe49f32";
2074 sha256 = "1mh2m3c9xi7g650s06qxfpz57g493n0qjq35inad9y62yb1gsidm";
2075 };
2076 dependencies = [];
2077
2078 };
2079
2080 undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2081 name = "undotree-2017-03-24";
2082 src = fetchgit {
2083 url = "git://github.com/mbbill/undotree";
2084 rev = "ad08a88df70c1865b8c9ef6eeac5cdb051d2a18a";
2085 sha256 = "1i1sss8vzsym44amq19rfy95wm7143ks5h9imm7z7rah7xkcqv9l";
2086 };
2087 dependencies = [];
2088
2089 };
2090
2091 vim-addon-actions = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2092 name = "vim-addon-actions-2014-09-22";
2093 src = fetchgit {
2094 url = "git://github.com/MarcWeber/vim-addon-actions";
2095 rev = "a5d20500fb8812958540cf17862bd73e7af64936";
2096 sha256 = "1wfkwr89sn2w97i94d0dqylcg9mr6pirjadi0a4l492nfnsh99bc";
2097 };
2098 dependencies = ["vim-addon-mw-utils" "tlib"];
2099
2100 };
2101
2102 vim-addon-async = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2103 name = "vim-addon-async-2017-03-20";
2104 src = fetchgit {
2105 url = "git://github.com/MarcWeber/vim-addon-async";
2106 rev = "eca316a4480f68c2cb62128f3187dc7b2002afde";
2107 sha256 = "1lk8ma51dd0syi73vq5r4qk9cpy6cq3llizvh94hmxblfjpvrs7q";
2108 };
2109 dependencies = ["vim-addon-signs"];
2110
2111 };
2112
2113 vim-addon-background-cmd = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2114 name = "vim-addon-background-cmd-2015-12-11";
2115 src = fetchgit {
2116 url = "git://github.com/MarcWeber/vim-addon-background-cmd";
2117 rev = "abf2abf339652d2bc79da81f9d131edfe2755f5a";
2118 sha256 = "0csy68x686l3x5ancidxb5b6prg9k7ikybqzq3klx0gs5rmksfy4";
2119 };
2120 dependencies = ["vim-addon-mw-utils"];
2121
2122 };
2123
2124 vim-addon-commenting = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2125 name = "vim-addon-commenting-2013-06-10";
2126 src = fetchgit {
2127 url = "git://github.com/MarcWeber/vim-addon-commenting";
2128 rev = "b7cf748ac1c9bf555cbd347589e3b7196030d20b";
2129 sha256 = "0alak8h33vada2ckb0v06y82qlib5mhyc2yswlv1rqh8ypzhq3mc";
2130 };
2131 dependencies = [];
2132
2133 };
2134
2135 vim-addon-completion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2136 name = "vim-addon-completion-2015-02-10";
2137 src = fetchgit {
2138 url = "git://github.com/MarcWeber/vim-addon-completion";
2139 rev = "021c449a5ce1ce4ac0af5955e05b0279c1cc0e75";
2140 sha256 = "1ld059y2qwlc5bdfjm2p314s1qh31lxs54g944pw49r46s5nlslr";
2141 };
2142 dependencies = ["tlib"];
2143
2144 };
2145
2146 vim-addon-errorformats = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2147 name = "vim-addon-errorformats-2014-11-05";
2148 src = fetchgit {
2149 url = "git://github.com/MarcWeber/vim-addon-errorformats";
2150 rev = "dcbb203ad5f56e47e75fdee35bc92e2ba69e1d28";
2151 sha256 = "159zqm69fxbxcv3b2y99g57bf20qrzsijcvb5rzy2njxah3049m1";
2152 };
2153 dependencies = [];
2154
2155 };
2156
2157 vim-addon-goto-thing-at-cursor = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2158 name = "vim-addon-goto-thing-at-cursor-2012-01-11";
2159 src = fetchgit {
2160 url = "git://github.com/MarcWeber/vim-addon-goto-thing-at-cursor";
2161 rev = "f052e094bdb351829bf72ae3435af9042e09a6e4";
2162 sha256 = "1ksm2b0j80zn8sz2y227bpcx4jsv76lwgr2gpgy2drlyqhn2vlv0";
2163 };
2164 dependencies = ["tlib"];
2165
2166 };
2167
2168 vim-addon-local-vimrc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2169 name = "vim-addon-local-vimrc-2015-03-19";
2170 src = fetchgit {
2171 url = "git://github.com/MarcWeber/vim-addon-local-vimrc";
2172 rev = "6a27f95b35befa70cd0d049329cd0920566c764b";
2173 sha256 = "0n8lwl1gyak149p7jpgm0qbmfj8hcg8hirx3dxdhizw0yc47ws7h";
2174 };
2175 dependencies = [];
2176
2177 };
2178
2179 vim-addon-manager = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2180 name = "vim-addon-manager-2017-05-07";
2181 src = fetchgit {
2182 url = "git://github.com/MarcWeber/vim-addon-manager";
2183 rev = "2434225ae48e608c2b6ac86c8da1c62209da746f";
2184 sha256 = "1fczkd05gir994614qmgscx131isr71bn0rwa6n3vgdbnhasz6bb";
2185 };
2186 dependencies = [];
2187 buildInputs = stdenv.lib.optional stdenv.isDarwin Cocoa;
2188 };
2189
2190 vim-addon-mru = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2191 name = "vim-addon-mru-2013-08-08";
2192 src = fetchgit {
2193 url = "git://github.com/MarcWeber/vim-addon-mru";
2194 rev = "e41e39bd9d1bf78ccfd8d5e1bc05ae5e1026c2bb";
2195 sha256 = "0q6rxr9nrp63kidr3m3c2z5sda4g813pzshg0scxkjr8dxwhzdqm";
2196 };
2197 dependencies = ["vim-addon-other" "vim-addon-mw-utils"];
2198
2199 };
2200
2201 vim-addon-mw-utils = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2202 name = "vim-addon-mw-utils-2012-11-05";
2203 src = fetchgit {
2204 url = "git://github.com/MarcWeber/vim-addon-mw-utils";
2205 rev = "0c5612fa31ee434ba055e21c76f456244b3b5109";
2206 sha256 = "147s1k4n45d3x281vj35l26sv4waxjlpqdn83z3k9n51556h1d45";
2207 };
2208 dependencies = [];
2209
2210 };
2211
2212 vim-addon-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2213 name = "vim-addon-nix-2015-03-10";
2214 src = fetchgit {
2215 url = "git://github.com/MarcWeber/vim-addon-nix";
2216 rev = "2aed79ba5d8c5e6abd102de77e55e242f61b17f1";
2217 sha256 = "0zx1q9994py6jmm0qbbx6fc1dy5la8zfskkbvqqxssxrl5dx7vvi";
2218 };
2219 dependencies = ["vim-addon-completion" "vim-addon-goto-thing-at-cursor" "vim-addon-errorformats" "vim-addon-actions" "vim-addon-mw-utils" "tlib"];
2220
2221 };
2222
2223 vim-addon-other = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2224 name = "vim-addon-other-2014-07-15";
2225 src = fetchgit {
2226 url = "git://github.com/MarcWeber/vim-addon-other";
2227 rev = "f78720c9cb5bf871cabb13c7cbf94378dbf0163b";
2228 sha256 = "0cjz7mlyfkkncas4ss7rwxb0q38ls1qw1p15hac1imscscsvyjc6";
2229 };
2230 dependencies = ["vim-addon-actions" "vim-addon-mw-utils"];
2231
2232 };
2233
2234 vim-addon-php-manual = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2235 name = "vim-addon-php-manual-2015-01-01";
2236 src = fetchgit {
2237 url = "git://github.com/MarcWeber/vim-addon-php-manual";
2238 rev = "5f9810dd1f6e9f36a45f637ae6260ccff09256ff";
2239 sha256 = "1kc67f12wccqdza069b75lpcbqp4kv4r23i4mfz0ihwif5mfnhir";
2240 };
2241 dependencies = [];
2242
2243 };
2244
2245 vim-addon-signs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2246 name = "vim-addon-signs-2013-04-19";
2247 src = fetchgit {
2248 url = "git://github.com/MarcWeber/vim-addon-signs";
2249 rev = "17a49f293d18174ff09d1bfff5ba86e8eee8e8ae";
2250 sha256 = "0i4gfp30hmw1vqjl6zxjrgkca3ikdkcnjmma2mncjmcr6f59kjzy";
2251 };
2252 dependencies = [];
2253
2254 };
2255
2256 vim-addon-sql = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2257 name = "vim-addon-sql-2017-02-11";
2258 src = fetchgit {
2259 url = "git://github.com/MarcWeber/vim-addon-sql";
2260 rev = "048a139af36829fce670c8ff80d3aad927557ee6";
2261 sha256 = "0ihm157sby6csdwsnw2gwh3jmm3prm1mxwgkx2hsfwlmpb1vwwm3";
2262 };
2263 dependencies = ["vim-addon-completion" "vim-addon-background-cmd" "tlib"];
2264
2265 };
2266
2267 vim-addon-syntax-checker = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2268 name = "vim-addon-syntax-checker-2017-06-26";
2269 src = fetchgit {
2270 url = "git://github.com/MarcWeber/vim-addon-syntax-checker";
2271 rev = "739e5719b77c6aea3299c27fc1f4238ac54a8344";
2272 sha256 = "1rcn1ps06156nyglvxg6m7pn3vhvmnv5ad6kidp59hggyr5332i9";
2273 };
2274 dependencies = ["vim-addon-mw-utils" "tlib"];
2275
2276 };
2277
2278 vim-addon-toggle-buffer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2279 name = "vim-addon-toggle-buffer-2012-01-13";
2280 src = fetchgit {
2281 url = "git://github.com/MarcWeber/vim-addon-toggle-buffer";
2282 rev = "a1b38b9c5709cba666ed2d84ef06548f675c6b0b";
2283 sha256 = "1xq38kfdm36c34ln66znw841q797w5gm8bpq1x64bsf2h6n3ml03";
2284 };
2285 dependencies = ["vim-addon-mw-utils" "tlib"];
2286
2287 };
2288
2289 vim-addon-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2290 name = "vim-addon-xdebug-2014-08-29";
2291 src = fetchgit {
2292 url = "git://github.com/MarcWeber/vim-addon-xdebug";
2293 rev = "45f26407305b4ce6f8f5f37d2b5e6e4354104172";
2294 sha256 = "1i64ppdfp2qqq7vw1jf160mj4ikc04v39iazdab83xmiqjsh8ixw";
2295 };
2296 dependencies = ["WebAPI" "vim-addon-mw-utils" "vim-addon-signs" "vim-addon-async"];
2297
2298 };
2299
2300 vim-airline = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2301 name = "vim-airline-2017-07-21";
2302 src = fetchgit {
2303 url = "git://github.com/vim-airline/vim-airline";
2304 rev = "72e5f04f7c422e21cb6f6856c4e94cef25ea2288";
2305 sha256 = "0pkdlmil0lqwwi7anzn7r1zxxqbip9zy1pbwri031yksff6v2096";
2306 };
2307 dependencies = [];
2308
2309 };
2310
2311 vim-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2312 name = "vim-coffee-script-2017-03-03";
2313 src = fetchgit {
2314 url = "git://github.com/kchmck/vim-coffee-script";
2315 rev = "aace5c23d812a205c93e87ff79df72d9366928df";
2316 sha256 = "1saz5m3c329m2vk8ffhvxw4virz70k2qrjncwhvjpkik27jf75yy";
2317 };
2318 dependencies = [];
2319
2320 };
2321
2322 vim-easy-align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2323 name = "vim-easy-align-2017-06-03";
2324 src = fetchgit {
2325 url = "git://github.com/junegunn/vim-easy-align";
2326 rev = "1cd724dc239c3a0f7a12e0fac85945cc3dbe07b0";
2327 sha256 = "0bqk1sdqamfgagh31a60c7gvvsvjpg1xys7ivqh62iqlny5i9774";
2328 };
2329 dependencies = [];
2330
2331 };
2332
2333 vim-gista = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2334 name = "vim-gista-2017-02-20";
2335 src = fetchgit {
2336 url = "git://github.com/lambdalisue/vim-gista";
2337 rev = "b6cd41d0eb480cd79e84f3da3703613d0cf94a6c";
2338 sha256 = "0bkzbppd3jdci4yvifb4sh05q20qn8cr3j9kqhxyc703s0l0lk2s";
2339 };
2340 dependencies = [];
2341
2342 };
2343
2344 vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2345 name = "vim-gitgutter-2017-06-08";
2346 src = fetchgit {
2347 url = "git://github.com/airblade/vim-gitgutter";
2348 rev = "dcac1f74ee5c26125363dca164463bde6657c838";
2349 sha256 = "0knkdv0sbdwf4p82g438l7pylwzxfbxcj44np3v15wr97w95wmlv";
2350 };
2351 dependencies = [];
2352
2353 };
2354
2355 vim-iced-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2356 name = "vim-iced-coffee-script-2013-12-27";
2357 src = fetchgit {
2358 url = "git://github.com/noc7c9/vim-iced-coffee-script";
2359 rev = "e42e0775fa4b1f8840c55cd36ac3d1cedbc1dea2";
2360 sha256 = "14yfirny359rlrr082il2ys3hxiyrbbk794rdxrs2lasjy8rb1f7";
2361 };
2362 dependencies = [];
2363
2364 };
2365
2366 vim-latex-live-preview = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2367 name = "vim-latex-live-preview-2017-07-19";
2368 src = fetchgit {
2369 url = "git://github.com/xuhdev/vim-latex-live-preview";
2370 rev = "172b03cd0677f1fe55abeab86fa4a4c484e4c3b5";
2371 sha256 = "1wgnq1kbx80xqwm9rx3z4i9fldj965046s4hh62rdi5585hh6aps";
2372 };
2373 dependencies = [];
2374
2375 };
2376
2377 vim-multiple-cursors = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2378 name = "vim-multiple-cursors-2017-06-02";
2379 src = fetchgit {
2380 url = "git://github.com/terryma/vim-multiple-cursors";
2381 rev = "3afc475cc64479a406ce73d3333df1f67db3c73f";
2382 sha256 = "04dijb4hgidypppphcy83bacmfrd9ikyjc761hqq6bl4kc49f5kc";
2383 };
2384 dependencies = [];
2385
2386 };
2387
2388 vim-signature = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2389 name = "vim-signature-2017-06-20";
2390 src = fetchgit {
2391 url = "git://github.com/kshenoy/vim-signature";
2392 rev = "c6decc68d644a66a34345ea09677469d6e482e1f";
2393 sha256 = "1iflyvskimq74hzb6l8mzjv3rh0i15bw9jv5x6arns86q3201l23";
2394 };
2395 dependencies = [];
2396
2397 };
2398
2399 vim-signify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2400 name = "vim-signify-2017-07-19";
2401 src = fetchgit {
2402 url = "git://github.com/mhinz/vim-signify";
2403 rev = "748cb0ddab1b7e64bb81165c733a7b752b3d36e4";
2404 sha256 = "0kc4nbf3a7ab0an4r1j37bvzjarr4135qqhkz348r7zdhmqkyyfm";
2405 };
2406 dependencies = [];
2407
2408 };
2409
2410 vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2411 name = "vim-snippets-2017-07-07";
2412 src = fetchgit {
2413 url = "git://github.com/honza/vim-snippets";
2414 rev = "0817950a4fb8ccd48ec38a2b65cf046b597eecb3";
2415 sha256 = "0hxd96zl5gjkx5d381yzyrbahwbz3r9dljzn2cxbdbjsb7im6aks";
2416 };
2417 dependencies = [];
2418
2419 };
2420
2421 vim-webdevicons = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2422 name = "vim-webdevicons-2017-05-29";
2423 src = fetchgit {
2424 url = "git://github.com/ryanoasis/vim-devicons";
2425 rev = "153266275acc4f4615407a18e90f58780ebaef92";
2426 sha256 = "1zjrra0q5c7lmgxzlz7ddd7vi6k2vhz69fdy2s7d873nnmmd7kgn";
2427 };
2428 dependencies = [];
2429
2430 };
2431
2432 vim2hs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2433 name = "vim2hs-2014-04-16";
2434 src = fetchgit {
2435 url = "git://github.com/dag/vim2hs";
2436 rev = "f2afd55704bfe0a2d66e6b270d247e9b8a7b1664";
2437 sha256 = "18lqrl3hqb6cmizc04bbnsh8j0g761w2q8wascbzzfw80dmxy36b";
2438 };
2439 dependencies = [];
2440
2441 };
2442
2443 vimwiki = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2444 name = "vimwiki-2017-07-15";
2445 src = fetchgit {
2446 url = "git://github.com/vimwiki/vimwiki";
2447 rev = "976cbbcd23dcd19ddb5dc5544645da8a51dbdfe6";
2448 sha256 = "1mna3qavwj1jcjnvmw8hngrfccpk5krj2z0v2grp97i9m2kmkifx";
2449 };
2450 dependencies = [];
2451
2452 };
2453
2454 vinegar = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2455 name = "vinegar-2017-06-27";
2456 src = fetchgit {
2457 url = "git://github.com/tpope/vim-vinegar";
2458 rev = "c795cb739347cbddeeb288c3c35da9f140a513c9";
2459 sha256 = "1dcirb0b73s2l14ppn8mlh79pjpf9kgym9im05039ynr9rl83fv3";
2460 };
2461 dependencies = [];
2462
2463 };
2464
2465 vundle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2466 name = "vundle-2017-06-08";
2467 src = fetchgit {
2468 url = "git://github.com/gmarik/vundle";
2469 rev = "6437ad6df4a3e6a87c5fb8bd2b8aadb277ec9c87";
2470 sha256 = "13k194g0rs5hz7ci0ys4gml71jily5hdd0yljzmmn8qjiq88v6p4";
2471 };
2472 dependencies = [];
2473
2474 };
2475
2476}