1# TODO check that no license information gets lost
2{ fetchurl, bash, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip
3, which, fetchgit, fetchFromGitHub, fetchhg, fetchzip, llvmPackages, zip
4, vim_configurable, vimPlugins, xkb_switch, git, rustracerd, fzf
5, Cocoa ? null
6}:
7
8let
9
10inherit (vimUtils.override {inherit vim;}) rtpPath addRtp buildVimPlugin
11 buildVimPluginFrom2Nix vimHelpTags;
12in
13
14# TL;DR
15# Add your plugin to ./vim-plugin-names
16# Regenerate via `nix-build -Q -A vimPlugins.pluginnames2nix; ./result/bin/vim-plugin-names-to-nix`
17# Copy the generated expression(s) into this file.
18# If plugin is complicated then make changes to ./vim2nix/additional-nix-code
19
20# This attrs contains two sections:
21# The first contains plugins added manually, the second contains plugins
22# generated by call nix#ExportPluginsForNix.
23# Documentation & usage see vim-utils.nix.
24# attribute names should be the same as used by vim-pi to make dependency
25# resolution work
26rec {
27 # This is not a plugin, it provides bin/vim-open-buffer-with-plugins-derivations
28 # which recreates this the following derivations based on ./vim-plugin-names
29 pluginnames2nix = vimUtils.pluginnames2Nix {
30 name = "vim-plugin-names-to-nix";
31 namefiles = [./vim-plugin-names];
32 };
33
34 # Section I
35 vim-addon-vim2nix = vim2nix;
36
37 vim2nix = buildVimPluginFrom2Nix { # use it to update plugins
38 name = "vim2nix";
39 src = ./vim2nix;
40 dependencies = ["vim-addon-manager"];
41 };
42
43
44 # Section II
45 # Update with vimUtils.vimPlugins.pluginnames2Nix command
46
47 # aliasess
48 "sourcemap.vim" = sourcemap;
49 Colour_Sampler_Pack = Colour-Sampler-Pack;
50 YouCompleteMe = youcompleteme;
51 airline = vim-airline;
52 alternative = a-vim; # backwards compat, added 2014-10-21
53 calendar = calendar-vim;
54 coffee-script = vim-coffee-script;
55 coffeeScript = coffee-script; # backwards compat, added 2014-10-18
56 colors-solarized = Solarized;
57 colorsamplerpack = Colour_Sampler_Pack;
58 command_T = command-t; # backwards compat, added 2014-10-18
59 css_color_5056 = vim-css-color;
60 ctrlp = ctrlp-vim;
61 easy-align = vim-easy-align;
62 easymotion = vim-easymotion;
63 eighties = vim-eighties;
64 ghc-mod-vim = ghcmod;
65 gist-vim = Gist;
66 gitgutter = vim-gitgutter;
67 gundo = gundo-vim;
68 Gundo = gundo-vim; # backwards compat, added 2015-10-03
69 haskellConceal = haskellconceal; # backwards compat, added 2014-10-18
70 haskellconceal = vim-haskellconceal;
71 haskellConcealPlus = vim-haskellConcealPlus;
72 hier = vim-hier;
73 hlint-refactor = hlint-refactor-vim;
74 hoogle = Hoogle;
75 ipython = vim-ipython;
76 latex-live-preview = vim-latex-live-preview;
77 multiple-cursors = vim-multiple-cursors;
78 necoGhc = neco-ghc; # backwards compat, added 2014-10-18
79 neocomplete = neocomplete-vim;
80 neosnippet = neosnippet-vim;
81 nerdcommenter = The_NERD_Commenter;
82 nerdtree = The_NERD_tree;
83 quickrun = vim-quickrun;
84 signature = vim-signature;
85 stylish-haskell = vim-stylish-haskell;
86 stylishHaskell = stylish-haskell; # backwards compat, added 2014-10-18
87 supertab = Supertab;
88 syntastic = Syntastic;
89 tabular = Tabular;
90 tagbar = Tagbar;
91 thumbnail = thumbnail-vim;
92 tmux-navigator = vim-tmux-navigator;
93 tmuxNavigator = tmux-navigator; # backwards compat, added 2014-10-18
94 tslime = tslime-vim;
95 vimproc = vimproc-vim;
96 vimshell = vimshell-vim;
97 watchdogs = vim-watchdogs;
98 webapi-vim = WebAPI;
99 wombat256 = wombat256-vim; # backwards compat, added 2015-7-8
100 yankring = YankRing;
101
102 fzfWrapper = buildVimPluginFrom2Nix {
103 name = fzf.name;
104 src = "${fzf}/share/go/src/github.com/junegunn/fzf";
105 dependencies = [];
106 };
107
108 # --- generated packages bellow this line ---
109
110 CSApprox = buildVimPluginFrom2Nix { # created by nix#NixDerivation
111 name = "CSApprox-2013-07-26";
112 src = fetchgit {
113 url = "git://github.com/godlygeek/csapprox";
114 rev = "7981dac51d8b6776985aa08cb7b5ee98ea7f2ddd";
115 sha256 = "08g4x6nnd6hkgm2daa5ihhz75pcdx3jzzv8rfjls80qajlhx5rf6";
116 };
117 dependencies = [];
118
119 };
120
121 CheckAttach = buildVimPluginFrom2Nix { # created by nix#NixDerivation
122 name = "CheckAttach-2015-06-22";
123 src = fetchgit {
124 url = "git://github.com/chrisbra/CheckAttach";
125 rev = "a1d86be7e69b25b41ce1a7fe2d2844330f783b68";
126 sha256 = "0scshz5vc5j2lhjj5is4y392xarwsdh4z3y7kyibq3d7fmszksgn";
127 };
128 dependencies = [];
129
130 };
131
132 Gist = buildVimPluginFrom2Nix { # created by nix#NixDerivation
133 name = "Gist-2015-10-25";
134 src = fetchgit {
135 url = "git://github.com/mattn/gist-vim";
136 rev = "88c331e2e07765090112a396e5e119b39b5aa754";
137 sha256 = "0z7qnkgv8ryyiwikz6v6vpqypr2gh2hih27cil02rs4ci4041w74";
138 };
139 dependencies = [];
140
141 };
142
143 Hoogle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
144 name = "Hoogle-2015-12-24";
145 src = fetchgit {
146 url = "git://github.com/Twinside/vim-hoogle";
147 rev = "a5db36f048ac16ab9774fc86f36cd4ae9a444932";
148 sha256 = "1855n6dsimbc0brfbmmkx1gszhmgfghm1h1mpi95mq9qzbwkgjri";
149 };
150 dependencies = [];
151
152 };
153
154 Solarized = buildVimPluginFrom2Nix { # created by nix#NixDerivation
155 name = "Solarized-2011-05-09";
156 src = fetchgit {
157 url = "git://github.com/altercation/vim-colors-solarized";
158 rev = "528a59f26d12278698bb946f8fb82a63711eec21";
159 sha256 = "05d3lmd1shyagvr3jygqghxd3k8a4vp32723fvxdm57fdrlyzcm1";
160 };
161 dependencies = [];
162
163 };
164
165 Supertab = buildVimPluginFrom2Nix { # created by nix#NixDerivation
166 name = "Supertab-2016-01-03";
167 src = fetchgit {
168 url = "git://github.com/ervandew/supertab";
169 rev = "66511772a430a5eaad7f7d03dbb02e8f33c4a641";
170 sha256 = "1kxxgplsc40wyl7yj3dpcjjgysd41cd32ppcpnj5knphpjw7abp4";
171 };
172 dependencies = [];
173
174 };
175
176 Syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation
177 name = "Syntastic-2016-07-21";
178 src = fetchgit {
179 url = "git://github.com/scrooloose/syntastic";
180 rev = "663fea9dc9371d574f1a4a6ba15cc9e60ebbe510";
181 sha256 = "1y37m1iikki13y6rpzfgdyadd565q9zixg6xkly34bgbp1yrq5g0";
182 };
183 dependencies = [];
184
185 };
186
187 Tabular = buildVimPluginFrom2Nix { # created by nix#NixDerivation
188 name = "Tabular-2016-05-04";
189 src = fetchgit {
190 url = "git://github.com/godlygeek/tabular";
191 rev = "00e1e7fcdbc6d753e0bc8043e0d2546fa81bf367";
192 sha256 = "185jpisk9hamcwb6aiavdzjdbbigzdra8f4mgs98r9cm9j448xkz";
193 };
194 dependencies = [];
195
196 };
197
198 Tagbar = buildVimPluginFrom2Nix { # created by nix#NixDerivation
199 name = "Tagbar-2015-06-19";
200 src = fetchgit {
201 url = "git://github.com/majutsushi/tagbar";
202 rev = "7b36c46d17d57db34fdb0adac9ba6382d0bb5e66";
203 sha256 = "10n1c55r2arj89man01hq9dlp2lwya9gma2jh8lhhy8p9zfl95w6";
204 };
205 dependencies = [];
206
207 };
208
209 The_NERD_Commenter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
210 name = "The_NERD_Commenter-2016-07-14";
211 src = fetchgit {
212 url = "git://github.com/scrooloose/nerdcommenter";
213 rev = "c3d6a2069bb0286c9633fbbffb4983797f7b8822";
214 sha256 = "0xwnx8ggqpik9jnyb4a69v7z789ffrfnxc3frl644x7bhndgaa1v";
215 };
216 dependencies = [];
217
218 };
219
220 The_NERD_tree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
221 name = "The_NERD_tree-2016-06-23";
222 src = fetchgit {
223 url = "git://github.com/scrooloose/nerdtree";
224 rev = "2e2b649232d6ae4d02d74793e5da0ee08480ad8d";
225 sha256 = "1rfm6w60bk168y1l9hjjxd4840j1jr1h0s77lsdjr9wxpxbw59ml";
226 };
227 dependencies = [];
228
229 };
230
231 UltiSnips = buildVimPluginFrom2Nix { # created by nix#NixDerivation
232 name = "UltiSnips-2016-07-07";
233 src = fetchgit {
234 url = "git://github.com/SirVer/ultisnips";
235 rev = "e8c485eb3c7e2c4c3ddc62beb79011f026a3ca04";
236 sha256 = "03cdpz136ry6v7h0sddlyvgxwvp3bl1ir7451v3sd6q867ywvbs7";
237 };
238 dependencies = [];
239
240 };
241
242 VimOutliner = buildVimPluginFrom2Nix { # created by nix#NixDerivation
243 name = "VimOutliner-2016-07-22";
244 src = fetchgit {
245 url = "git://github.com/vimoutliner/vimoutliner";
246 rev = "bd80cee8d9df9530c730ec4237de7ebe197b3642";
247 sha256 = "0ynf60vzahif8ccb50kssjk64bh3r8bai3x37n6qb1gi5m61yn3z";
248 };
249 dependencies = [];
250
251 };
252
253 WebAPI = buildVimPluginFrom2Nix { # created by nix#NixDerivation
254 name = "WebAPI-2016-07-06";
255 src = fetchgit {
256 url = "git://github.com/mattn/webapi-vim";
257 rev = "e3fa93f29a3a0754204002775e140d8a9acfd7fd";
258 sha256 = "0z6s3cnipcww4q33d4dcp0p8jw29izghcrj75fxy6dmy1yw2fbcr";
259 };
260 dependencies = [];
261
262 };
263
264 YankRing = buildVimPluginFrom2Nix { # created by nix#NixDerivation
265 name = "YankRing";
266 src = fetchurl {
267 url = "http://www.vim.org/scripts/download_script.php?src_id=23487";
268 name = "yankring_190.zip";
269 sha256 = "0nnxpsfjp2p9jvs3y5ynnd5s56snz9927zdp9bgmay2jgxfmp0si";
270 };
271 buildInputs = [ unzip ];
272 dependencies = [];
273 meta = {
274 url = "http://www.vim.org/scripts/script.php?script_id=1234";
275 };
276
277 sourceRoot = ".";
278 };
279
280 commentary = buildVimPluginFrom2Nix { # created by nix#NixDerivation
281 name = "commentary-2016-03-10";
282 src = fetchgit {
283 url = "git://github.com/tpope/vim-commentary";
284 rev = "73e0d9a9d1f51b6cc9dc965f62669194ae851cb1";
285 sha256 = "1z409hpdk22v2ccx2y3sgcjf4fmnq7pyjfnk72srpqydfivxsl13";
286 };
287 dependencies = [];
288
289 };
290
291 ctrlp-py-matcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation
292 name = "ctrlp-py-matcher-2016-06-22";
293 src = fetchgit {
294 url = "git://github.com/FelikZ/ctrlp-py-matcher";
295 rev = "fb831ff903d5622b39f400fc8ba80f9bbd225307";
296 sha256 = "0zamyhxn910q6yyja6ypc92pxr47n28yzb6h90x20z0q2wka5842";
297 };
298 dependencies = [];
299
300 };
301
302 ctrlp-z = buildVimPluginFrom2Nix { # created by nix#NixDerivation
303 name = "ctrlp-z-2015-10-17";
304 src = fetchgit {
305 url = "git://github.com/amiorin/ctrlp-z";
306 rev = "d1a69ec623ce24b9a30fc8fe3cd468c322b03026";
307 sha256 = "16nsj1g8lqmyizlb5ijwhf4dsmh0xv1kwqq6jxvhaf55vfga82yl";
308 };
309 dependencies = [];
310
311 };
312
313 extradite = buildVimPluginFrom2Nix { # created by nix#NixDerivation
314 name = "extradite-2015-09-22";
315 src = fetchgit {
316 url = "git://github.com/int3/vim-extradite";
317 rev = "52326f6d333cdbb9e9c6d6772af87f4f39c00526";
318 sha256 = "0c89i0spvdm9vi65q15qcmsfmwa9rds2wmaq1kf6s7q7ywvs6w8i";
319 };
320 dependencies = [];
321
322 };
323
324 fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation
325 name = "fugitive-2016-07-06";
326 src = fetchgit {
327 url = "git://github.com/tpope/vim-fugitive";
328 rev = "c00ebd75ac23f4080c0d0bf9453b16304a3fb316";
329 sha256 = "0j8vy6n70m02k2iq4y4nbpc0jnzk1ag51qnnbxj7aad4hkn8hban";
330 };
331 dependencies = [];
332
333 };
334
335 ghcmod = buildVimPluginFrom2Nix { # created by nix#NixDerivation
336 name = "ghcmod-2016-06-19";
337 src = fetchgit {
338 url = "git://github.com/eagletmt/ghcmod-vim";
339 rev = "1d192d13d68ab59f9f46497a0909bf24a7b7dfff";
340 sha256 = "0bzahgzagnf0a9zv86jhdf8nc3p0yfz9izv5n3lc8gc12cp47d0a";
341 };
342 dependencies = [];
343
344 };
345
346 vim-auto-save = buildVimPluginFrom2Nix { # created by nix#NixDerivation
347 name = "vim-auto-save-2016-07-20";
348 src = fetchgit {
349 url = "git://github.com/907th/vim-auto-save";
350 rev = "ef54e6c66c5a2ffeb39b45db731f00e1811f7334";
351 sha256 = "03kbphnkcxvbvvanzj22j0rkhp19dbbmqqsgypdz7avx9bra3nxw";
352 };
353 dependencies = [];
354
355 };
356
357 vim-autoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
358 name = "vim-autoformat-2016-07-08";
359 src = fetchgit {
360 url = "git://github.com/Chiel92/vim-autoformat";
361 rev = "06251ab31789b6c478358306ab0e476c7d03b0d5";
362 sha256 = "0q749lbz1zzajdwyyznyg7h4mf2sdd0sq77dr24szs4f937zy007";
363 };
364 dependencies = [];
365
366 };
367
368 vim-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
369 name = "vim-nix-2016-05-31";
370 src = fetchgit {
371 url = "git://github.com/LnL7/vim-nix";
372 rev = "9ac8876e5beb824018b9a09d4640f7efc2fbc8ae";
373 sha256 = "0whdf56c63vp4c3b2jfl1x5c0dxxrzwvxkfm5951qzpfy6xwg27x";
374 };
375 dependencies = [];
376
377 };
378
379 deoplete-nvim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
380 name = "deoplete-nvim-2016-07-26";
381 src = fetchgit {
382 url = "git://github.com/Shougo/deoplete.nvim";
383 rev = "cd52ac6c076720541c6b9a82581622f597778e97";
384 sha256 = "0rd9hdhk800nj5sz52zabxb2im75ckq2jmrqhff0n5dlmc61hdd2";
385 };
386 dependencies = [];
387
388 };
389
390 Spacegray-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
391 name = "Spacegray-vim-2016-06-04";
392 src = fetchgit {
393 url = "git://github.com/ajh17/Spacegray.vim";
394 rev = "adb621e3d1df5f55d60383717bbae4533fda9c62";
395 sha256 = "15n92rllri11ckdy1dykllx7xpgscvhfqa55z5sl66zicnrv89c9";
396 };
397 dependencies = [];
398
399 };
400
401 vim-closetag = buildVimPluginFrom2Nix { # created by nix#NixDerivation
402 name = "vim-closetag-2016-07-19";
403 src = fetchgit {
404 url = "git://github.com/alvan/vim-closetag";
405 rev = "e7e6cb99b9abb2aaa4711b9b2a98ad029169253b";
406 sha256 = "0827yrgawfjf82z37lndf58ikyh6s8g9qhxvnbfxvz8cc4a6r21v";
407 };
408 dependencies = [];
409
410 };
411
412 vim-css-color = buildVimPluginFrom2Nix { # created by nix#NixDerivation
413 name = "vim-css-color-2016-07-21";
414 src = fetchgit {
415 url = "git://github.com/ap/vim-css-color";
416 rev = "e2017678257fa8a175e4ab1191f9cfbe8cab39b2";
417 sha256 = "1179kcm44sssw09lj38p9n3h8lrnfraxn6hf9x7azl0kx0v4jjry";
418 };
419 dependencies = [];
420
421 };
422
423 neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation
424 name = "neomake-2016-07-23";
425 src = fetchgit {
426 url = "git://github.com/benekastah/neomake";
427 rev = "ab22f656cd3ce77a7092568c412b7422c15889e8";
428 sha256 = "1x26srp0grvjna7cvzsncjnzynvzg22rwn96dc90zn4qlrnnhw1s";
429 };
430 dependencies = [];
431
432 };
433
434 vim-hdevtools = buildVimPluginFrom2Nix { # created by nix#NixDerivation
435 name = "vim-hdevtools-2012-12-29";
436 src = fetchgit {
437 url = "git://github.com/bitc/vim-hdevtools";
438 rev = "474947c52ff9c93dd36f3c49de90bd9a78f0baa1";
439 sha256 = "1wwjb9m2l9q75d408jzq9bwv5i376bfgs6vc3ihwwlawcrmhjpxz";
440 };
441 dependencies = [];
442
443 };
444
445 vim-tmux-navigator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
446 name = "vim-tmux-navigator-2016-07-17";
447 src = fetchgit {
448 url = "git://github.com/christoomey/vim-tmux-navigator";
449 rev = "caf4c48141f9088632b457f488fb797af77c3ce1";
450 sha256 = "0gj6klb296jqq8zi40q7ryparpbv85dx4ahx6gpfv85452zn7rml";
451 };
452 dependencies = [];
453
454 };
455
456 spacevim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
457 name = "spacevim-2016-07-19";
458 src = fetchgit {
459 url = "git://github.com/ctjhoa/spacevim";
460 rev = "59864e305977fa47e032529d20d9dfb589c06659";
461 sha256 = "0d99bnrb2yz3d40kr9gdxwp369b18d6vn3jm3d3fz2n55k6xp9ww";
462 };
463 dependencies = [];
464
465 };
466
467 ctrlp-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
468 name = "ctrlp-vim-2016-07-08";
469 src = fetchgit {
470 url = "git://github.com/ctrlpvim/ctrlp.vim";
471 rev = "b9fa920b4abbb54799927a3bc57869fdd556321a";
472 sha256 = "1h8cm9mihd3jngmb6x60hxyr0g3swg6xhq8jw36xskb1ygdvbxzp";
473 };
474 dependencies = [];
475
476 };
477
478 vim-jade = buildVimPluginFrom2Nix { # created by nix#NixDerivation
479 name = "vim-jade-2016-06-28";
480 src = fetchgit {
481 url = "git://github.com/digitaltoad/vim-jade";
482 rev = "f3950a72ea92f2c372846e763dad1f1151a38fb1";
483 sha256 = "1wa7zf24szmwchk608s5ikv14jzch9nl8isrn9ji9sz2511w50wp";
484 };
485 dependencies = [];
486
487 };
488
489 neco-ghc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
490 name = "neco-ghc-2016-07-01";
491 src = fetchgit {
492 url = "git://github.com/eagletmt/neco-ghc";
493 rev = "7f02a9c25fb272a87d2be092826e2cd3094c620d";
494 sha256 = "1fcfk45qb96h6y4zb3p0104iyqc85q1synn9ah56zp6hnkkyffbw";
495 };
496 dependencies = [];
497
498 };
499
500 elm-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
501 name = "elm-vim-2016-07-25";
502 src = fetchgit {
503 url = "git://github.com/elmcast/elm-vim";
504 rev = "abc998a113a77a729bf8c2b918978c8e43e60847";
505 sha256 = "1byma9dyh59b4mnmr0nmjmy0ribgn9l8m2gddbc0hfgcwbzjxy5y";
506 };
507 dependencies = [];
508
509 };
510
511 vim-localvimrc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
512 name = "vim-localvimrc-2016-06-06";
513 src = fetchgit {
514 url = "git://github.com/embear/vim-localvimrc";
515 rev = "f104384cd9127b5a75ed889b551fd7f46faeb74a";
516 sha256 = "0k1ava8nhshkm7llhmagpsmvgwy8xcc0mn3chdk6hz8gzz9755py";
517 };
518 dependencies = [];
519
520 };
521
522 vim-haskellConcealPlus = buildVimPluginFrom2Nix { # created by nix#NixDerivation
523 name = "vim-haskellConcealPlus-2016-05-13";
524 src = fetchgit {
525 url = "git://github.com/enomsg/vim-haskellConcealPlus";
526 rev = "81dfb51ff8e471fb1f30659a10daaf1bdd65fb03";
527 sha256 = "0vm76gxw62lkyxccrlnn8sblfl3d51svwfra9wfixq4h51jdggyr";
528 };
529 dependencies = [];
530
531 };
532
533 YUNOcommit-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
534 name = "YUNOcommit-vim-2014-11-26";
535 src = fetchgit {
536 url = "git://github.com/esneider/YUNOcommit.vim";
537 rev = "981082055a73ef076d7e27477874d2303153a448";
538 sha256 = "0mjc7fn405vcx1n7vadl98p5wgm6jxrlbdbkqgjq8f1m1ir81zab";
539 };
540 dependencies = [];
541
542 };
543
544 vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation
545 name = "vim-go-2016-07-26";
546 src = fetchgit {
547 url = "git://github.com/fatih/vim-go";
548 rev = "b7ac76ad7ef469d45aa44d2209a3a61b46cb3b1a";
549 sha256 = "0dx7zqh6hq4lgjqc8jvjaa1yjc46yfcbfpj8cs4qd06zafzqf8wf";
550 };
551 dependencies = [];
552
553 };
554
555 vim-colorschemes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
556 name = "vim-colorschemes-2016-03-18";
557 src = fetchgit {
558 url = "git://github.com/flazz/vim-colorschemes";
559 rev = "189f5182bb70fd35d0f56fee451c3f22a2a80135";
560 sha256 = "1j3r99av9rzdrp8w0c86n0r4kgiv8xry5xdghc1871kvz77sq5d4";
561 };
562 dependencies = [];
563
564 };
565
566 floobits-neovim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
567 name = "floobits-neovim-2016-06-20";
568 src = fetchgit {
569 url = "git://github.com/floobits/floobits-neovim";
570 rev = "cd9247f2ddeab1f9da247d495127b1a836415783";
571 sha256 = "12r0xmb5fl6gj47dr8xwiw0pan4xdwjxjjnyi5smfy4sg29lzwl7";
572 };
573 dependencies = [];
574
575 };
576
577 psc-ide-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
578 name = "psc-ide-vim-2016-07-06";
579 src = fetchgit {
580 url = "git://github.com/frigoeu/psc-ide-vim";
581 rev = "8704b993fe7dced73aa871244fbf7cd2fbafb759";
582 sha256 = "1wvs5v59aai3q2lgavaav073gz609944j8xbck34xyyq2naqmhaq";
583 };
584 dependencies = [];
585
586 };
587
588 vim-jsonnet = buildVimPluginFrom2Nix { # created by nix#NixDerivation
589 name = "vim-jsonnet-2016-05-10";
590 src = fetchgit {
591 url = "git://github.com/google/vim-jsonnet";
592 rev = "9cde81ff3f1afb64f8e6b51e8ebba25b074e26f8";
593 sha256 = "156lbh1xgw3vrgbdfax3mhyfdm2r6r0ak42bs001ykpqmn6dxbrx";
594 };
595 dependencies = [];
596
597 };
598
599 vim-leader-guide = buildVimPluginFrom2Nix { # created by nix#NixDerivation
600 name = "vim-leader-guide-2016-05-17";
601 src = fetchgit {
602 url = "git://github.com/hecal3/vim-leader-guide";
603 rev = "333bd74c6f6ad18d653061f469342f9a37664256";
604 sha256 = "07y4rq9d45vak5gm0hm1aazsh8r0k631aa9d0q9v9iz9k3v7irgw";
605 };
606 dependencies = [];
607
608 };
609
610 idris-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
611 name = "idris-vim-2016-07-15";
612 src = fetchgit {
613 url = "git://github.com/idris-hackers/idris-vim";
614 rev = "aeca73e9432c21da6eb35fceaef957f191b3d56a";
615 sha256 = "1q38sf4dabirhrr3i89p271ixap90im0x3pf39s3fc9jmb3m2jm8";
616 };
617 dependencies = [];
618
619 };
620
621 calendar-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
622 name = "calendar-vim-2016-07-18";
623 src = fetchgit {
624 url = "git://github.com/itchyny/calendar.vim";
625 rev = "a61af2bf6d8919d75e9ab48776316f1b3e11c336";
626 sha256 = "0zxdx1q3x541ddm1d5qlwx8rl37gqhm3bgrsl1kmkn14az8nyy7k";
627 };
628 dependencies = [];
629
630 };
631
632 lightline-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
633 name = "lightline-vim-2016-06-12";
634 src = fetchgit {
635 url = "git://github.com/itchyny/lightline.vim";
636 rev = "430ce2cb063b39a0c7950cafd617e333acb6759a";
637 sha256 = "0336c17vkfh60cvj86y35lqz1xcd80csrlb985k1hyd5s7cayp42";
638 };
639 dependencies = [];
640
641 };
642
643 thumbnail-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
644 name = "thumbnail-vim-2016-03-17";
645 src = fetchgit {
646 url = "git://github.com/itchyny/thumbnail.vim";
647 rev = "4afdc473b47d162610965fa5ed15fa855cca65d4";
648 sha256 = "1z5a9dqb788ll5j8gg3hdjjggwpx0b073v5dr8zlrk1zjwah56gw";
649 };
650 dependencies = [];
651
652 };
653
654 vim-ipython = buildVimPluginFrom2Nix { # created by nix#NixDerivation
655 name = "vim-ipython-2015-06-23";
656 src = fetchgit {
657 url = "git://github.com/ivanov/vim-ipython";
658 rev = "42499f094b805b90b683afa5009cee99abd0bb75";
659 sha256 = "10wpfvfs8yv1bvzra4d5zy5glp62gbalpayxx7mkalhr2ccppy3x";
660 };
661 dependencies = [];
662
663 };
664
665 vim-hier = buildVimPluginFrom2Nix { # created by nix#NixDerivation
666 name = "vim-hier-2011-08-27";
667 src = fetchgit {
668 url = "git://github.com/jceb/vim-hier";
669 rev = "0b8c365263551a67404ebd7e528c55e17c1d3de7";
670 sha256 = "118pd9sx1bl9vfr89xrf536hfx4l162a43a1qpwpkqxzb9a3ca7n";
671 };
672 dependencies = [];
673 buildInputs = [ vim ];
674 };
675
676 vim-orgmode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
677 name = "vim-orgmode-2016-07-12";
678 src = fetchgit {
679 url = "git://github.com/jceb/vim-orgmode";
680 rev = "e76c0f07e9193e08df2b8eeb95ef6240b494797f";
681 sha256 = "00ys1qf8hbigrdxshs5xvg662xcd6qaiw2g1nr21pfs682qdjsyf";
682 };
683 dependencies = [];
684
685 };
686
687 vim-buffergator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
688 name = "vim-buffergator-2016-04-07";
689 src = fetchgit {
690 url = "git://github.com/jeetsukumaran/vim-buffergator";
691 rev = "611966d1ced784d5659c5dc07e984fabd95d917f";
692 sha256 = "1brb6qwlgxq4zcmrqp7wf2zvfvdq4zm8ynzg8wg9rq5cmyp8f61z";
693 };
694 dependencies = [];
695
696 };
697
698 tslime-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
699 name = "tslime-vim-2016-06-14";
700 src = fetchgit {
701 url = "git://github.com/jgdavey/tslime.vim";
702 rev = "c980c76bbfc9a523fcf1edf08580d0d3a486e8f2";
703 sha256 = "0gifyxwlspfnkni886adwn9kc0dckanjk0097y8pwxh7qbwfydf1";
704 };
705 dependencies = [];
706
707 };
708
709 vim-nerdtree-tabs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
710 name = "vim-nerdtree-tabs-2014-09-25";
711 src = fetchgit {
712 url = "git://github.com/jistr/vim-nerdtree-tabs";
713 rev = "0decec122e9bb3e9328b01fa20a9650e79cc6ca7";
714 sha256 = "0m51vpxq0d3mxy9i18hczsbqsqi7vlzwgjnpryb8gb5wmy999d6l";
715 };
716 dependencies = [];
717
718 };
719
720 zenburn = buildVimPluginFrom2Nix { # created by nix#NixDerivation
721 name = "zenburn-2015-09-18";
722 src = fetchgit {
723 url = "git://github.com/jnurmine/zenburn";
724 rev = "f7847fb1531b91e2b4bb4aed5db3146f07765179";
725 sha256 = "1las12jznf25dkxrjk3s9l70c6wnpjisngmvi83bhw5gvx4c7mq5";
726 };
727 dependencies = [];
728
729 };
730
731 vim-colorstepper = buildVimPluginFrom2Nix { # created by nix#NixDerivation
732 name = "vim-colorstepper-2016-01-28";
733 src = fetchgit {
734 url = "git://github.com/jonbri/vim-colorstepper";
735 rev = "f23ba0d995d41508a2dc9471cf31d3d01a4b5f05";
736 sha256 = "05ykxn0gmh8liz0zv5hb8df1ajggxp88izq3825m0yb3ma3k1jqs";
737 };
738 dependencies = [];
739
740 };
741
742 vim-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
743 name = "vim-xdebug-2012-08-15";
744 src = fetchgit {
745 url = "git://github.com/joonty/vim-xdebug";
746 rev = "a4980fa65f7f159780593ee37c178281691ba2c4";
747 sha256 = "1qh18r0sm4gh95sjbi2hnflvxdl4gk00jyy3n7z4i1gnx9ihxjqw";
748 };
749 dependencies = [];
750 postInstall = false;
751 };
752
753 fzf-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
754 name = "fzf-vim-2016-07-21";
755 src = fetchgit {
756 url = "git://github.com/junegunn/fzf.vim";
757 rev = "491ff9942f1bc18919176b781f0acc8bfb1ae73d";
758 sha256 = "05g07gji55rb35hfiisbjwbnkfz7msxq6xsjajvwdl6g2v4nmfyl";
759 };
760 dependencies = [];
761
762 };
763
764 limelight-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
765 name = "limelight-vim-2016-06-24";
766 src = fetchgit {
767 url = "git://github.com/junegunn/limelight.vim";
768 rev = "106fb5749d227a0de72e36068ed72798c6fd48e6";
769 sha256 = "0fp4yp50n5v5zx3a7afh9wip4nwcfhmdgdzwpnl79jvild1z9fgh";
770 };
771 dependencies = [];
772
773 };
774
775 vim-peekaboo = buildVimPluginFrom2Nix { # created by nix#NixDerivation
776 name = "vim-peekaboo-2016-07-25";
777 src = fetchgit {
778 url = "git://github.com/junegunn/vim-peekaboo";
779 rev = "3a7c48bd8f2ab0d30485e9d64f930f3d99b46088";
780 sha256 = "0g1lhxzqf4mddm82nilff46pgcpkzcv5yb7yxkisy06byw18vbnq";
781 };
782 dependencies = [];
783
784 };
785
786 vim-eighties = buildVimPluginFrom2Nix { # created by nix#NixDerivation
787 name = "vim-eighties-2015-11-02";
788 src = fetchgit {
789 url = "git://github.com/justincampbell/vim-eighties";
790 rev = "62a9719df45fddd0456bf47420fc4768f9c8f5a5";
791 sha256 = "1ada7f2lhdwjqmy5kxma69s215z4phi4khh8hsy5qd6k3a4bvyrs";
792 };
793 dependencies = [];
794
795 };
796
797 latex-box = buildVimPluginFrom2Nix { # created by nix#NixDerivation
798 name = "latex-box-2015-06-01";
799 src = fetchgit {
800 url = "git://github.com/latex-box-team/latex-box";
801 rev = "3c2901e12cb78bfb2be58ba4c62a488612550fe1";
802 sha256 = "1z4mdy47cpwcdhvy8mr72vhlybxn1y59yd3ixf6ids1bzpkrd7zl";
803 };
804 dependencies = [];
805
806 };
807
808 vim-jinja = buildVimPluginFrom2Nix { # created by nix#NixDerivation
809 name = "vim-jinja-2016-05-20";
810 src = fetchgit {
811 url = "git://github.com/lepture/vim-jinja";
812 rev = "0bcc2993ef13bacd4bf1a0d91eb17652f7aedb86";
813 sha256 = "1wypg9rf7q65g6l3ajp75gdb4cd7spckzd4b7ccg8c47vd937dcj";
814 };
815 dependencies = [];
816
817 };
818
819 vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation
820 name = "vimtex-2016-08-19";
821 src = fetchgit {
822 url = "git://github.com/lervag/vimtex";
823 rev = "5bc5b14ae213deeafd2b6d8702ac11cefd4c0e8b";
824 sha256 = "0gqjxwjln82ar8dnv0dpmkhmycznxk2r0g06sddaq12y4r6bw5s9";
825 };
826 dependencies = [];
827
828 };
829
830 vim-easymotion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
831 name = "vim-easymotion-2016-05-07";
832 src = fetchgit {
833 url = "git://github.com/lokaltog/vim-easymotion";
834 rev = "5c6f3cd9a713491e6b32752a05c45198aa91540a";
835 sha256 = "0nr50c6hsg43bc86gkiram5whkggjpszffl8xkqxdmlspz9h96v3";
836 };
837 dependencies = [];
838
839 };
840
841 vim-xkbswitch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
842 name = "vim-xkbswitch-2016-01-31";
843 src = fetchgit {
844 url = "git://github.com/lyokha/vim-xkbswitch";
845 rev = "89fa3fc16251f2e97281d29ade3ee022ba285003";
846 sha256 = "16wahaz9d6jyqlvmsn764xqircrwaap3pn4fbgmly7vfmdvq4p8b";
847 };
848 dependencies = [];
849 patchPhase = ''
850 substituteInPlace plugin/xkbswitch.vim \
851 --replace /usr/local/lib/libxkbswitch.so ${xkb_switch}/lib/libxkbswitch.so
852 '';
853 buildInputs = [ xkb_switch ];
854 };
855
856 vim-startify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
857 name = "vim-startify-2016-07-21";
858 src = fetchgit {
859 url = "git://github.com/mhinz/vim-startify";
860 rev = "3f7b8d7b5e8b9f7670f7bcfab3596cb72930ca5e";
861 sha256 = "00shnn7wmi3y3354ppd4dgjkxzdnj6cc9wa5sp998y7jlxnc84i9";
862 };
863 dependencies = [];
864
865 };
866
867 lushtags = buildVimPluginFrom2Nix { # created by nix#NixDerivation
868 name = "lushtags-2016-04-26";
869 src = fetchgit {
870 url = "git://github.com/mkasa/lushtags";
871 rev = "641e4163d078e7c3844f2ac82a8153a3ef06484b";
872 sha256 = "1zqgvflkw0pnrv6bzvlsd98sc2m7nk5w3bzqdzj3xdi8ahqx239g";
873 };
874 dependencies = [];
875
876 };
877
878 hlint-refactor-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
879 name = "hlint-refactor-vim-2015-12-05";
880 src = fetchgit {
881 url = "git://github.com/mpickering/hlint-refactor-vim";
882 rev = "fffb044ecef854a82c5c2efda252e09044ba03e0";
883 sha256 = "0z8d31arfy9aidg1dwj5msnnx799d9r7njkgh51z695w6ayxn6p8";
884 };
885 dependencies = [];
886
887 };
888
889 vim-indent-guides = buildVimPluginFrom2Nix { # created by nix#NixDerivation
890 name = "vim-indent-guides-2016-04-17";
891 src = fetchgit {
892 url = "git://github.com/nathanaelkane/vim-indent-guides";
893 rev = "018298ead9d3aa9cd3b4ae222f81022a33978b09";
894 sha256 = "0zyrs9r3vza2kqhqir6qpkygy6yljpn877bvycspv89ljzczmwrs";
895 };
896 dependencies = [];
897
898 };
899
900 vim-stylish-haskell = buildVimPluginFrom2Nix { # created by nix#NixDerivation
901 name = "vim-stylish-haskell-2015-05-10";
902 src = fetchgit {
903 url = "git://github.com/nbouscal/vim-stylish-haskell";
904 rev = "c664376ba814de3f87cb7641f90b2c6a9dd53671";
905 sha256 = "1xm5ark2mwphznv3xsyzgcldnr52i5jzk1pfqdh0080j07aama8j";
906 };
907 dependencies = [];
908
909 };
910
911 haskell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
912 name = "haskell-vim-2016-07-06";
913 src = fetchgit {
914 url = "git://github.com/neovimhaskell/haskell-vim";
915 rev = "a9ceb3d812488c1cee8a2b763cca0e4a48bfd14c";
916 sha256 = "022ckyc85i8f6r32z2grn41s9g4fg1a7fqprzbgs2kbi9k2igqni";
917 };
918 dependencies = [];
919
920 };
921
922 shabadou-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
923 name = "shabadou-vim-2016-07-19";
924 src = fetchgit {
925 url = "git://github.com/osyo-manga/shabadou.vim";
926 rev = "7d4bfed1ea8985ae125df3d1403cc19e252443e1";
927 sha256 = "1kvik1yf7yjg9jdmdw38yhkksxg0n3nry02banwik7wgjnpvg870";
928 };
929 dependencies = [];
930
931 };
932
933 vim-watchdogs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
934 name = "vim-watchdogs-2016-06-26";
935 src = fetchgit {
936 url = "git://github.com/osyo-manga/vim-watchdogs";
937 rev = "7c89466b2b7fd9b87e0189e4ac66b84f2cfbc842";
938 sha256 = "09swjrfrqvciw7blqd1ssklxs09x0sd7ixphy07az7cxfmpdpi4r";
939 };
940 dependencies = [];
941
942 };
943
944 vim-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
945 name = "vim-racer-2016-07-14";
946 src = fetchgit {
947 url = "git://github.com/racer-rust/vim-racer";
948 rev = "ea2a41ddc3e1e504a542f6add0f6f2c10d97a099";
949 sha256 = "1vwxs9mqcvp3haqyx0si5hiw61vg2s2hm1alipb5s69sb38f047s";
950 };
951 dependencies = [];
952
953 };
954
955 purescript-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
956 name = "purescript-vim-2016-01-04";
957 src = fetchgit {
958 url = "git://github.com/raichoo/purescript-vim";
959 rev = "92dd6bc647b45444e9d5e0550bdc3c56928f9762";
960 sha256 = "090vpff58lzzhqp28p27am5s8s6ngjxw6j4y46zaixcxxx7wqzha";
961 };
962 dependencies = [];
963
964 };
965
966 rust-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
967 name = "rust-vim-2016-07-16";
968 src = fetchgit {
969 url = "git://github.com/rust-lang/rust.vim";
970 rev = "a4d6fb2ab526ccc93a6a321a2425a234f9f7665f";
971 sha256 = "1i2sf5p4d9gfr3hk6nrjar0rz85dmhwgf82d5yfqqmlgil0bljds";
972 };
973 dependencies = [];
974
975 };
976
977 neoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
978 name = "neoformat-2016-07-20";
979 src = fetchgit {
980 url = "git://github.com/sbdchd/neoformat";
981 rev = "3ce811e317512bbdfa4be8bc5c78c253301854c5";
982 sha256 = "07ycc0n1y9qrgv17ykid2nnrw984hwswisjijhpnfmpqkjrxg662";
983 };
984 dependencies = [];
985
986 };
987
988 vim-polyglot = buildVimPluginFrom2Nix { # created by nix#NixDerivation
989 name = "vim-polyglot-2016-07-26";
990 src = fetchgit {
991 url = "git://github.com/sheerun/vim-polyglot";
992 rev = "3019afa721b893ebfe130eb4f955bc4c0c20ec23";
993 sha256 = "1f463w66k6brzq3qa8a3xhz2n6xgkri451fclrz2qp41x0bdwjic";
994 };
995 dependencies = [];
996
997 };
998
999 neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1000 name = "neocomplete-vim-2016-07-23";
1001 src = fetchgit {
1002 url = "git://github.com/shougo/neocomplete.vim";
1003 rev = "8d2a574c1708080ef1fac3336c99d2d9e1898fce";
1004 sha256 = "10c885hjp0w50ry1s72zziw7ddvzkri5dbjxa3wnfhisqw7awb8h";
1005 };
1006 dependencies = [];
1007
1008 };
1009
1010 neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1011 name = "neosnippet-snippets-2016-07-14";
1012 src = fetchgit {
1013 url = "git://github.com/shougo/neosnippet-snippets";
1014 rev = "4d25b4352738ecf34e56701d0172d80daa3bd287";
1015 sha256 = "01lai1gvf30iagh9f7av69ywfzw43vy2igwil882rgnri84y4zjb";
1016 };
1017 dependencies = [];
1018
1019 };
1020
1021 neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1022 name = "neosnippet-vim-2016-07-10";
1023 src = fetchgit {
1024 url = "git://github.com/shougo/neosnippet.vim";
1025 rev = "9492fbb7e9016243af3c1987b91f0bffcf4cc8e7";
1026 sha256 = "0p2d762z0s9ayrc4kcqr7s1hmcghd04z818szqdn6v6rsr9lyln8";
1027 };
1028 dependencies = [];
1029
1030 };
1031
1032 unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1033 name = "unite-vim-2016-07-26";
1034 src = fetchgit {
1035 url = "git://github.com/shougo/unite.vim";
1036 rev = "47daeed4a6934fbcc418fda8ce19ac702904520f";
1037 sha256 = "0nl57spp8pbhbad259s5xnihjpnh38sw0rqgg6i80vzmjziy9wiv";
1038 };
1039 dependencies = [];
1040
1041 };
1042
1043 vimproc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1044 name = "vimproc-vim-2016-07-10";
1045 src = fetchgit {
1046 url = "git://github.com/shougo/vimproc.vim";
1047 rev = "b2255c66a3dc04fba1adbda3e380facff45fe6ec";
1048 sha256 = "09fabq1j3grd8d8xz0y9i5y756mqzs9n7icvnlmi6hbjzkv1rkx6";
1049 };
1050 dependencies = [];
1051 buildInputs = [ which ];
1052
1053 buildPhase = ''
1054 substituteInPlace autoload/vimproc.vim \
1055 --replace vimproc_mac.so vimproc_unix.so \
1056 --replace vimproc_linux64.so vimproc_unix.so \
1057 --replace vimproc_linux32.so vimproc_unix.so
1058 make -f make_unix.mak
1059 '';
1060 };
1061
1062 vimshell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1063 name = "vimshell-vim-2016-07-15";
1064 src = fetchgit {
1065 url = "git://github.com/shougo/vimshell.vim";
1066 rev = "c71ffb48b9ea2c718facd2eaad431f59503e58aa";
1067 sha256 = "0yvj0a50gmss56yb2vkh6f9pyarnv9cnvrrai8pyrb2jxhl3ipv6";
1068 };
1069 dependencies = [ "vimproc-vim" ];
1070 };
1071
1072 gundo-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1073 name = "gundo-vim-2016-01-19";
1074 src = fetchgit {
1075 url = "git://github.com/sjl/gundo.vim";
1076 rev = "e7fe41024ace9047eee610f23311d44fd9d917c0";
1077 sha256 = "14mx617mxh7q6rhjfcnv080hpr965vhqzfwhlizpmzc16lsf7ni1";
1078 };
1079 dependencies = [];
1080
1081 };
1082
1083 vim-hardtime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1084 name = "vim-hardtime-2016-07-05";
1085 src = fetchgit {
1086 url = "git://github.com/takac/vim-hardtime";
1087 rev = "93ed99803df721648a9b93f0ccd4afe3d8d95a4e";
1088 sha256 = "0as6kbdg2jqkxphxyv6ik6qxyp245hl52aqmx5gjd4vi3pryg0gl";
1089 };
1090 dependencies = [];
1091
1092 };
1093
1094 vim-expand-region = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1095 name = "vim-expand-region-2013-08-19";
1096 src = fetchgit {
1097 url = "git://github.com/terryma/vim-expand-region";
1098 rev = "966513543de0ddc2d673b5528a056269e7917276";
1099 sha256 = "0l30wjlk4vxr16f1njnvf8aw9yg9p9jisvcxbcg3znsq5q8ix6zv";
1100 };
1101 dependencies = [];
1102
1103 };
1104
1105 vimpreviewpandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1106 name = "vimpreviewpandoc-2016-03-07";
1107 src = fetchgit {
1108 url = "git://github.com/tex/vimpreviewpandoc";
1109 rev = "b109d41ad6478df5ec7f1311950c6efca66f36e4";
1110 sha256 = "1gx326xarjs3qjygpkrknncad90crjqfx8v6pir4r7k1hl7dfxc4";
1111 };
1112 dependencies = [];
1113
1114 };
1115
1116 vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1117 name = "vim-quickrun-2016-07-02";
1118 src = fetchgit {
1119 url = "git://github.com/thinca/vim-quickrun";
1120 rev = "5149ecd1502b7fc2583cb8799ac1a0c72c41f828";
1121 sha256 = "1y32s42wgcq8qssm7yr578vvamvlb4kkdb1k5mhp0hmwskj2v7xp";
1122 };
1123 dependencies = [];
1124
1125 };
1126
1127 molokai = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1128 name = "molokai-2015-11-11";
1129 src = fetchgit {
1130 url = "git://github.com/tomasr/molokai";
1131 rev = "c67bdfcdb31415aa0ade7f8c003261700a885476";
1132 sha256 = "1piszjr5kyw43ac1f0jh9z88g824xknshrkchbys9qxlz7pd831s";
1133 };
1134 dependencies = [];
1135
1136 };
1137
1138 vim-eunuch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1139 name = "vim-eunuch-2016-04-16";
1140 src = fetchgit {
1141 url = "git://github.com/tpope/vim-eunuch";
1142 rev = "5ee2b82b565e6c6d80f1cb7735c78f66a159b198";
1143 sha256 = "108v98qy49w2pgzndmqc9nydmsql2bnbcc849wshvkxgca349ixc";
1144 };
1145 dependencies = [];
1146
1147 };
1148
1149 hasksyn = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1150 name = "hasksyn-2014-09-03";
1151 src = fetchgit {
1152 url = "git://github.com/travitch/hasksyn";
1153 rev = "c434040bf13a17ca20a551223021b3ace7e453b9";
1154 sha256 = "09998lnfcshqis5m062wlag6y476imq9jday9gp4ayjjl1cp3cwx";
1155 };
1156 dependencies = [];
1157
1158 };
1159
1160 vim-haskellconceal = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1161 name = "vim-haskellconceal-2014-10-28";
1162 src = fetchgit {
1163 url = "git://github.com/twinside/vim-haskellconceal";
1164 rev = "f73c5dd660b7009a050b131783d7c17b4954e4d9";
1165 sha256 = "1a1v0m3qj0gian3mp5xynf2ghscr3xaid37b0wi38bb4f2qrigqy";
1166 };
1167 dependencies = [];
1168
1169 };
1170
1171 youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1172 name = "youcompleteme-2016-07-23";
1173 src = fetchgit {
1174 url = "git://github.com/valloric/youcompleteme";
1175 rev = "9968a43f7ec058298667c2c56ca86cfbbf1dac51";
1176 sha256 = "17fxlflzggzx0mzsbmgvhp7dmkrx760w2pkais2vkafk3xdr1yr7";
1177 };
1178 dependencies = [];
1179 buildInputs = [
1180 python go cmake
1181 (if stdenv.isDarwin then llvmPackages.clang else llvmPackages.clang-unwrapped)
1182 llvmPackages.llvm
1183 ] ++ stdenv.lib.optional stdenv.isDarwin Cocoa;
1184
1185 propagatedBuildInputs = stdenv.lib.optional (!stdenv.isDarwin) rustracerd;
1186
1187 patches = [
1188 ./patches/youcompleteme/1-top-cmake.patch
1189 ./patches/youcompleteme/2-ycm-cmake.patch
1190 ];
1191
1192 buildPhase = ''
1193 patchShebangs .
1194 substituteInPlace plugin/youcompleteme.vim \
1195 --replace "'ycm_path_to_python_interpreter', '''" "'ycm_path_to_python_interpreter', '${python}/bin/python'"
1196
1197 mkdir build
1198 pushd build
1199 cmake -G "Unix Makefiles" . ../third_party/ycmd/cpp -DPYTHON_LIBRARIES:PATH=${python}/lib/libpython2.7.so -DPYTHON_INCLUDE_DIR:PATH=${python}/include/python2.7 -DUSE_CLANG_COMPLETER=ON -DUSE_SYSTEM_LIBCLANG=ON
1200 make ycm_core -j''${NIX_BUILD_CORES} -l''${NIX_BUILD_CORES}}
1201 ${python}/bin/python ../third_party/ycmd/build.py --gocode-completer --clang-completer --system-libclang
1202 popd
1203 '';
1204
1205 meta = {
1206 description = "Fastest non utf-8 aware word and C completion engine for Vim";
1207 homepage = http://github.com/Valloric/YouCompleteMe;
1208 license = stdenv.lib.licenses.gpl3;
1209 maintainers = with stdenv.lib.maintainers; [marcweber jagajaga];
1210 platforms = stdenv.lib.platforms.unix;
1211 };
1212 };
1213
1214 vim-airline-themes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1215 name = "vim-airline-themes-2016-07-19";
1216 src = fetchgit {
1217 url = "git://github.com/vim-airline/vim-airline-themes";
1218 rev = "8b58708ec4318cee43a878ea74f7dedb61c8f07a";
1219 sha256 = "0wfh8ayrvcl1ysshkfad1kqwgzad35nlxffljb542z3f23n84g86";
1220 };
1221 dependencies = [];
1222
1223 };
1224
1225 vim-pandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1226 name = "vim-pandoc-2016-07-11";
1227 src = fetchgit {
1228 url = "git://github.com/vim-pandoc/vim-pandoc";
1229 rev = "18461740f6915540e4833a71ab54a8205c9898b8";
1230 sha256 = "00mawpl3wwj223g7bcmx4ghfysvxg9d3iqk1h8azykgccp6wg7p6";
1231 };
1232 dependencies = [];
1233
1234 };
1235
1236 vim-pandoc-after = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1237 name = "vim-pandoc-after-2015-06-01";
1238 src = fetchgit {
1239 url = "git://github.com/vim-pandoc/vim-pandoc-after";
1240 rev = "4377665e5c98f29ea838deb3b942200b8dd096ef";
1241 sha256 = "1379g174pvsaw1wdv1n18gby84sv59rsamfcgq9bqd4kg54g6h3j";
1242 };
1243 dependencies = [];
1244
1245 };
1246
1247 vim-pandoc-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1248 name = "vim-pandoc-syntax-2016-07-23";
1249 src = fetchgit {
1250 url = "git://github.com/vim-pandoc/vim-pandoc-syntax";
1251 rev = "e9fb38706fa676320191975abf32b9f25f14b049";
1252 sha256 = "18423bdw49w4pncl4ivh1fdw41wqdlcgwa3l3c66br1ja917ria7";
1253 };
1254 dependencies = [];
1255
1256 };
1257
1258 Colour-Sampler-Pack = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1259 name = "Colour-Sampler-Pack-2012-11-29";
1260 src = fetchgit {
1261 url = "git://github.com/vim-scripts/Colour-Sampler-Pack";
1262 rev = "05cded87b2ef29aaa9e930230bb88e23abff4441";
1263 sha256 = "03v2r18sfgs0xbgy9p56pxfdg0lsk6m7wyr5hw63wm1nzpwiipg3";
1264 };
1265 dependencies = [];
1266
1267 };
1268
1269 a-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1270 name = "a-vim-2010-11-06";
1271 src = fetchgit {
1272 url = "git://github.com/vim-scripts/a.vim";
1273 rev = "2cbe946206ec622d9d8cf2c99317f204c4d41885";
1274 sha256 = "0h62v9z5bh9xmaq22pqdb3z79i84a5rknqm68mjpy7nq7s3q42fa";
1275 };
1276 dependencies = [];
1277
1278 };
1279
1280 align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1281 name = "align-2012-08-07";
1282 src = fetchgit {
1283 url = "git://github.com/vim-scripts/align";
1284 rev = "787662fe90cd057942bc5b682fd70c87e1a9dd77";
1285 sha256 = "0acacr572kfh7jvavbw61q5pkwrpi1albgancma063rpax1pddgp";
1286 };
1287 dependencies = [];
1288
1289 };
1290
1291 changeColorScheme-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1292 name = "changeColorScheme-vim-2010-10-17";
1293 src = fetchgit {
1294 url = "git://github.com/vim-scripts/changeColorScheme.vim";
1295 rev = "b041d49f828629d72f2232531a230d1ec5de2405";
1296 sha256 = "0pybhsg9k9252d4ifdc4gsar8lkmfzbvs6xkzqq1m6f35l9wqk09";
1297 };
1298 dependencies = [];
1299
1300 };
1301
1302 random-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1303 name = "random-vim-2010-10-17";
1304 src = fetchgit {
1305 url = "git://github.com/vim-scripts/random.vim";
1306 rev = "b2d85eb24a38074eab37a5acf2a295e1f2ad8989";
1307 sha256 = "1lzy2cq4jcrsqyxlnbnd0y6j4mabm09bi7q22lf6vinqlb84w7sp";
1308 };
1309 dependencies = [];
1310
1311 };
1312
1313 tabmerge = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1314 name = "tabmerge-2010-10-17";
1315 src = fetchgit {
1316 url = "git://github.com/vim-scripts/tabmerge";
1317 rev = "074e5f06f26e7108a0570071a0f938a821768c06";
1318 sha256 = "0prkyza1n49cdaslcr57w8zv15vw78mlqbzib2xipmawzjq02idq";
1319 };
1320 dependencies = [];
1321
1322 };
1323
1324 wombat256-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1325 name = "wombat256-vim-2010-10-17";
1326 src = fetchgit {
1327 url = "git://github.com/vim-scripts/wombat256.vim";
1328 rev = "8734ba45dcf5e38c4d2686b35c94f9fcb30427e2";
1329 sha256 = "01fdvfwdfqn5xi88lfanb4lb6jmn1ma6wq6d9jj2x7qamdbpvsrg";
1330 };
1331 dependencies = [];
1332
1333 };
1334
1335 vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1336 name = "vim-wakatime-2016-07-06";
1337 src = fetchgit {
1338 url = "git://github.com/wakatime/vim-wakatime";
1339 rev = "31b1a5d78244605fcab024edc20e6a0c059e449f";
1340 sha256 = "0k5bnckv1882r9445p74a4iqys72imy23w87c1shq1gxps47cwms";
1341 };
1342 dependencies = [];
1343 buildInputs = [ python ];
1344 };
1345
1346 command-t = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1347 name = "command-t-2016-06-14";
1348 src = fetchgit {
1349 url = "git://github.com/wincent/command-t";
1350 rev = "354c429dad34f7d163663943c948f819588b53d3";
1351 sha256 = "1vkvc6ckza5b4ck52hv4rjclqi7x4f06dxkbqcqnia490m685v9q";
1352 };
1353 dependencies = [];
1354 buildInputs = [ perl ruby ];
1355 buildPhase = ''
1356 pushd ruby/command-t
1357 ruby extconf.rb
1358 make
1359 popd
1360 '';
1361 };
1362
1363 deoplete-jedi = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1364 name = "deoplete-jedi-2016-07-18";
1365 src = fetchgit {
1366 url = "git://github.com/zchee/deoplete-jedi";
1367 rev = "47992e47ff420d9779c1dc4e951dce48a1ae84a4";
1368 sha256 = "0cirfir1n4c86d82z7lw4wg6i92qzzbjad35imr3f2kkf2fqbn72";
1369 };
1370 dependencies = [];
1371
1372 };
1373
1374 goyo = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1375 name = "goyo-2016-04-03";
1376 src = fetchgit {
1377 url = "git://github.com/junegunn/goyo.vim";
1378 rev = "8e8f1d45b61e1fce7f84ee061c38f9e033e86ff9";
1379 sha256 = "120farhbfyzd7k1s1i68drwa5zzzm9yrcwzw45gwa2j7kqbv4hnx";
1380 };
1381 dependencies = [];
1382
1383 };
1384
1385 matchit-zip = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1386 name = "matchit-zip";
1387 src = fetchurl {
1388 url = "http://www.vim.org/scripts/download_script.php?src_id=8196";
1389 name = "matchit.zip";
1390 sha256 = "1bbm8j1bhb70kagwdimwy9vcvlrz9ax5bk2a7wrmn4cy87f9xj4l";
1391 };
1392 buildInputs = [ unzip ];
1393 dependencies = [];
1394 meta = {
1395 url = "http://www.vim.org/scripts/script.php?script_id=39";
1396 };
1397
1398 unpackPhase = ''
1399 (
1400 sourceRoot=d
1401 mkdir $sourceRoot; cd $sourceRoot;
1402 unzip $src
1403 )
1404 '';
1405 };
1406
1407 pathogen = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1408 name = "pathogen-2016-01-26";
1409 src = fetchgit {
1410 url = "git://github.com/tpope/vim-pathogen";
1411 rev = "8c91196cfd9c8fe619f35fac6f2ac81be10677f8";
1412 sha256 = "17d1903spczg2rk0qzg94vvq41dwhmnxwajqgzcx4lmf606cfspi";
1413 };
1414 dependencies = [];
1415
1416 };
1417
1418 quickfixstatus = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1419 name = "quickfixstatus-2011-09-02";
1420 src = fetchgit {
1421 url = "git://github.com/dannyob/quickfixstatus";
1422 rev = "fd3875b914fc51bbefefa8c4995588c088163053";
1423 sha256 = "16vxhvyxq51y7wnx0c1fmdi2yb6kfr1pxijq65gxj8qwvbak2s3v";
1424 };
1425 dependencies = [];
1426
1427 };
1428
1429 rainbow_parentheses = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1430 name = "rainbow_parentheses-2013-03-04";
1431 src = fetchgit {
1432 url = "git://github.com/kien/rainbow_parentheses.vim";
1433 rev = "eb8baa5428bde10ecc1cb14eed1d6e16f5f24695";
1434 sha256 = "1qw84imlhq4654mxazj7j3sp5g1j3yjxi496i08iix06dm15m5s7";
1435 };
1436 dependencies = [];
1437
1438 };
1439
1440 sensible = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1441 name = "sensible-2016-03-18";
1442 src = fetchgit {
1443 url = "git://github.com/tpope/vim-sensible";
1444 rev = "9e91be7e0fb42949831fe3161ef583363648aa58";
1445 sha256 = "1g1l3v33g9229r4g4kcx8m1yrh397yf3fn6bxis57n3lg6lmb6wm";
1446 };
1447 dependencies = [];
1448
1449 };
1450
1451 sleuth = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1452 name = "sleuth-2015-06-07";
1453 src = fetchgit {
1454 url = "git://github.com/tpope/vim-sleuth";
1455 rev = "a17462708aa40a7fc0afd4effa559087d8a2c908";
1456 sha256 = "12s7nl3c15i9wyinhzw9biymsyw74akx96nzix9p9979nxhmi09m";
1457 };
1458 dependencies = [];
1459
1460 };
1461
1462 snipmate = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1463 name = "snipmate-2016-06-15";
1464 src = fetchgit {
1465 url = "git://github.com/garbas/vim-snipmate";
1466 rev = "ee433e43c76c768c95ad6d9af67c4cd4b40f7eac";
1467 sha256 = "0rfis0rck0rk69nfzkrj6fm00hhdj75mvp809nw8vr14ldj2bvs7";
1468 };
1469 dependencies = ["vim-addon-mw-utils" "tlib"];
1470
1471 };
1472
1473 sourcemap = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1474 name = "sourcemap-2012-09-19";
1475 src = fetchgit {
1476 url = "git://github.com/chikatoike/sourcemap.vim";
1477 rev = "0dd82d40faea2fdb0771067f46c01deb41610ba1";
1478 sha256 = "1gcgnynallz420911fdfm0ccbv3zs78p69nnh2ls1r4vlfp7g350";
1479 };
1480 dependencies = [];
1481
1482 };
1483
1484 surround = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1485 name = "surround-2016-06-01";
1486 src = fetchgit {
1487 url = "git://github.com/tpope/vim-surround";
1488 rev = "e49d6c2459e0f5569ff2d533b4df995dd7f98313";
1489 sha256 = "1v0q2f1n8ngbja3wpjvqp2jh89pb5ij731qmm18k41nhgz6hhm46";
1490 };
1491 dependencies = [];
1492
1493 };
1494
1495 table-mode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1496 name = "table-mode-2016-07-11";
1497 src = fetchgit {
1498 url = "git://github.com/dhruvasagar/vim-table-mode";
1499 rev = "96236638a80fe73fa649824c9df25831a0042373";
1500 sha256 = "1c5xnm63hqw0jycwakdljs0f3mp26rjvd4llijrznpr9z2cvki8f";
1501 };
1502 dependencies = [];
1503
1504 };
1505
1506 taglist = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1507 name = "taglist";
1508 src = fetchurl {
1509 url = "http://www.vim.org/scripts/download_script.php?src_id=19574";
1510 name = "taglist_46.zip";
1511 sha256 = "18cbv462vwg7vip2p99qlahm99hswav96cj4ki227kyi05q2lkjj";
1512 };
1513 buildInputs = [ unzip ];
1514 dependencies = [];
1515 meta = {
1516 url = "http://www.vim.org/scripts/script.php?script_id=273";
1517 };
1518
1519 setSourceRoot = ''
1520 export sourceRoot=taglist
1521 mkdir taglist
1522 mv doc taglist
1523 mv plugin taglist
1524 '';
1525 };
1526
1527 tlib = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1528 name = "tlib-2016-07-25";
1529 src = fetchgit {
1530 url = "git://github.com/tomtom/tlib_vim";
1531 rev = "e5526d34f36e5b84792a9b866f532e1221b95e33";
1532 sha256 = "1dmhi4jr0vq879dzs584c01c6g6grk733cfdvq0gcyd20xc9lhn1";
1533 };
1534 dependencies = [];
1535
1536 };
1537
1538 undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1539 name = "undotree-2016-07-19";
1540 src = fetchgit {
1541 url = "git://github.com/mbbill/undotree";
1542 rev = "17dfeb6aeacc40036567d29c691898ac57b09182";
1543 sha256 = "0xmc95h5nbmjx6hvfd9lvkz8hdp8fw5xm5c7wcyy5f0rg7b6l68x";
1544 };
1545 dependencies = [];
1546
1547 };
1548
1549 vim-addon-actions = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1550 name = "vim-addon-actions-2014-09-22";
1551 src = fetchgit {
1552 url = "git://github.com/MarcWeber/vim-addon-actions";
1553 rev = "a5d20500fb8812958540cf17862bd73e7af64936";
1554 sha256 = "1wfkwr89sn2w97i94d0dqylcg9mr6pirjadi0a4l492nfnsh99bc";
1555 };
1556 dependencies = ["vim-addon-mw-utils" "tlib"];
1557
1558 };
1559
1560 vim-addon-async = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1561 name = "vim-addon-async-2016-07-12";
1562 src = fetchgit {
1563 url = "git://github.com/MarcWeber/vim-addon-async";
1564 rev = "b14414215b394a0ef887ea301085ae4b80012e38";
1565 sha256 = "1gr0rjn1vwqv4p51yb0s65gnpy1r0533lfy5nqbg20j4687yxls5";
1566 };
1567 dependencies = ["vim-addon-signs"];
1568
1569 };
1570
1571 vim-addon-background-cmd = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1572 name = "vim-addon-background-cmd-2015-12-11";
1573 src = fetchgit {
1574 url = "git://github.com/MarcWeber/vim-addon-background-cmd";
1575 rev = "abf2abf339652d2bc79da81f9d131edfe2755f5a";
1576 sha256 = "0csy68x686l3x5ancidxb5b6prg9k7ikybqzq3klx0gs5rmksfy4";
1577 };
1578 dependencies = ["vim-addon-mw-utils"];
1579
1580 };
1581
1582 vim-addon-commenting = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1583 name = "vim-addon-commenting-2013-06-10";
1584 src = fetchgit {
1585 url = "git://github.com/MarcWeber/vim-addon-commenting";
1586 rev = "b7cf748ac1c9bf555cbd347589e3b7196030d20b";
1587 sha256 = "0alak8h33vada2ckb0v06y82qlib5mhyc2yswlv1rqh8ypzhq3mc";
1588 };
1589 dependencies = [];
1590
1591 };
1592
1593 vim-addon-completion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1594 name = "vim-addon-completion-2015-02-10";
1595 src = fetchgit {
1596 url = "git://github.com/MarcWeber/vim-addon-completion";
1597 rev = "021c449a5ce1ce4ac0af5955e05b0279c1cc0e75";
1598 sha256 = "1ld059y2qwlc5bdfjm2p314s1qh31lxs54g944pw49r46s5nlslr";
1599 };
1600 dependencies = ["tlib"];
1601
1602 };
1603
1604 vim-addon-errorformats = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1605 name = "vim-addon-errorformats-2014-11-05";
1606 src = fetchgit {
1607 url = "git://github.com/MarcWeber/vim-addon-errorformats";
1608 rev = "dcbb203ad5f56e47e75fdee35bc92e2ba69e1d28";
1609 sha256 = "159zqm69fxbxcv3b2y99g57bf20qrzsijcvb5rzy2njxah3049m1";
1610 };
1611 dependencies = [];
1612
1613 };
1614
1615 vim-addon-goto-thing-at-cursor = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1616 name = "vim-addon-goto-thing-at-cursor-2012-01-11";
1617 src = fetchgit {
1618 url = "git://github.com/MarcWeber/vim-addon-goto-thing-at-cursor";
1619 rev = "f052e094bdb351829bf72ae3435af9042e09a6e4";
1620 sha256 = "1ksm2b0j80zn8sz2y227bpcx4jsv76lwgr2gpgy2drlyqhn2vlv0";
1621 };
1622 dependencies = ["tlib"];
1623
1624 };
1625
1626 vim-addon-local-vimrc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1627 name = "vim-addon-local-vimrc-2015-03-19";
1628 src = fetchgit {
1629 url = "git://github.com/MarcWeber/vim-addon-local-vimrc";
1630 rev = "6a27f95b35befa70cd0d049329cd0920566c764b";
1631 sha256 = "0n8lwl1gyak149p7jpgm0qbmfj8hcg8hirx3dxdhizw0yc47ws7h";
1632 };
1633 dependencies = [];
1634
1635 };
1636
1637 vim-addon-manager = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1638 name = "vim-addon-manager-2016-02-07";
1639 src = fetchgit {
1640 url = "git://github.com/MarcWeber/vim-addon-manager";
1641 rev = "872f9302cf0eb8e9cb6259ea4f329d2265f9e32d";
1642 sha256 = "14aixpj9p8b568mdh4pl7bmpw1rsc4d7axqr09g1m0a8q6rxipc7";
1643 };
1644 dependencies = [];
1645 buildInputs = stdenv.lib.optional stdenv.isDarwin Cocoa;
1646 };
1647
1648 vim-addon-mru = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1649 name = "vim-addon-mru-2013-08-08";
1650 src = fetchgit {
1651 url = "git://github.com/MarcWeber/vim-addon-mru";
1652 rev = "e41e39bd9d1bf78ccfd8d5e1bc05ae5e1026c2bb";
1653 sha256 = "0q6rxr9nrp63kidr3m3c2z5sda4g813pzshg0scxkjr8dxwhzdqm";
1654 };
1655 dependencies = ["vim-addon-other" "vim-addon-mw-utils"];
1656
1657 };
1658
1659 vim-addon-mw-utils = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1660 name = "vim-addon-mw-utils-2012-11-05";
1661 src = fetchgit {
1662 url = "git://github.com/MarcWeber/vim-addon-mw-utils";
1663 rev = "0c5612fa31ee434ba055e21c76f456244b3b5109";
1664 sha256 = "147s1k4n45d3x281vj35l26sv4waxjlpqdn83z3k9n51556h1d45";
1665 };
1666 dependencies = [];
1667
1668 };
1669
1670 vim-addon-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1671 name = "vim-addon-nix-2015-03-10";
1672 src = fetchgit {
1673 url = "git://github.com/MarcWeber/vim-addon-nix";
1674 rev = "2aed79ba5d8c5e6abd102de77e55e242f61b17f1";
1675 sha256 = "0zx1q9994py6jmm0qbbx6fc1dy5la8zfskkbvqqxssxrl5dx7vvi";
1676 };
1677 dependencies = ["vim-addon-completion" "vim-addon-goto-thing-at-cursor" "vim-addon-errorformats" "vim-addon-actions" "vim-addon-mw-utils" "tlib"];
1678
1679 };
1680
1681 vim-addon-other = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1682 name = "vim-addon-other-2014-07-15";
1683 src = fetchgit {
1684 url = "git://github.com/MarcWeber/vim-addon-other";
1685 rev = "f78720c9cb5bf871cabb13c7cbf94378dbf0163b";
1686 sha256 = "0cjz7mlyfkkncas4ss7rwxb0q38ls1qw1p15hac1imscscsvyjc6";
1687 };
1688 dependencies = ["vim-addon-actions" "vim-addon-mw-utils"];
1689
1690 };
1691
1692 vim-addon-php-manual = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1693 name = "vim-addon-php-manual-2015-01-01";
1694 src = fetchgit {
1695 url = "git://github.com/MarcWeber/vim-addon-php-manual";
1696 rev = "5f9810dd1f6e9f36a45f637ae6260ccff09256ff";
1697 sha256 = "1kc67f12wccqdza069b75lpcbqp4kv4r23i4mfz0ihwif5mfnhir";
1698 };
1699 dependencies = [];
1700
1701 };
1702
1703 vim-addon-signs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1704 name = "vim-addon-signs-2013-04-19";
1705 src = fetchgit {
1706 url = "git://github.com/MarcWeber/vim-addon-signs";
1707 rev = "17a49f293d18174ff09d1bfff5ba86e8eee8e8ae";
1708 sha256 = "0i4gfp30hmw1vqjl6zxjrgkca3ikdkcnjmma2mncjmcr6f59kjzy";
1709 };
1710 dependencies = [];
1711
1712 };
1713
1714 vim-addon-sql = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1715 name = "vim-addon-sql-2014-01-18";
1716 src = fetchgit {
1717 url = "git://github.com/MarcWeber/vim-addon-sql";
1718 rev = "05b8a0c211f1ae4c515c64e91dec555cdf20d90b";
1719 sha256 = "15l2201jkfml08znvkkpy7fm3wn87n91zgd9ysrf5h73amjx9y2w";
1720 };
1721 dependencies = ["vim-addon-completion" "vim-addon-background-cmd" "tlib"];
1722
1723 };
1724
1725 vim-addon-syntax-checker = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1726 name = "vim-addon-syntax-checker-2013-07-12";
1727 src = fetchgit {
1728 url = "git://github.com/MarcWeber/vim-addon-syntax-checker";
1729 rev = "8eb7217e636ca717d4de5cd03cc0180c5b66ae77";
1730 sha256 = "0gcvb922w4jsi203ygbnij9xhmgc6knj9b3ivw3m0fv5ckk4iw5f";
1731 };
1732 dependencies = ["vim-addon-mw-utils" "tlib"];
1733
1734 };
1735
1736 vim-addon-toggle-buffer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1737 name = "vim-addon-toggle-buffer-2012-01-13";
1738 src = fetchgit {
1739 url = "git://github.com/MarcWeber/vim-addon-toggle-buffer";
1740 rev = "a1b38b9c5709cba666ed2d84ef06548f675c6b0b";
1741 sha256 = "1xq38kfdm36c34ln66znw841q797w5gm8bpq1x64bsf2h6n3ml03";
1742 };
1743 dependencies = ["vim-addon-mw-utils" "tlib"];
1744
1745 };
1746
1747 vim-addon-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1748 name = "vim-addon-xdebug-2014-08-29";
1749 src = fetchgit {
1750 url = "git://github.com/MarcWeber/vim-addon-xdebug";
1751 rev = "45f26407305b4ce6f8f5f37d2b5e6e4354104172";
1752 sha256 = "1i64ppdfp2qqq7vw1jf160mj4ikc04v39iazdab83xmiqjsh8ixw";
1753 };
1754 dependencies = ["WebAPI" "vim-addon-mw-utils" "vim-addon-signs" "vim-addon-async"];
1755
1756 };
1757
1758 vim-airline = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1759 name = "vim-airline-2016-07-25";
1760 src = fetchgit {
1761 url = "git://github.com/vim-airline/vim-airline";
1762 rev = "4b5441a8f7276689fcd41e3c706eb6a2b68064a3";
1763 sha256 = "1ckdx8qgdkmx7k7m0wpyrhm6ms574kdykikfdqvbyyin5dg015px";
1764 };
1765 dependencies = [];
1766
1767 };
1768
1769 vim-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1770 name = "vim-coffee-script-2016-06-29";
1771 src = fetchgit {
1772 url = "git://github.com/kchmck/vim-coffee-script";
1773 rev = "0f4bd9776cfd0fd2a394a4b1991630698e4fdc2d";
1774 sha256 = "18n1xbs59s71zvavjcg7an8y5dhq6agrb2rc2j6y48y7na0kf8sf";
1775 };
1776 dependencies = [];
1777
1778 };
1779
1780 vim-easy-align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1781 name = "vim-easy-align-2016-03-06";
1782 src = fetchgit {
1783 url = "git://github.com/junegunn/vim-easy-align";
1784 rev = "0cb6b98fc155717b0a56c110551ac57d1d951ddb";
1785 sha256 = "10j1fz7si7xqqs4p7h66jd0xzr116cv3xjyac9p20fc0yyyg1wbh";
1786 };
1787 dependencies = [];
1788
1789 };
1790
1791 vim-gista = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1792 name = "vim-gista-2016-04-11";
1793 src = fetchgit {
1794 url = "git://github.com/lambdalisue/vim-gista";
1795 rev = "7ff4d24f242d406ff71d9a65691357aee80f37f7";
1796 sha256 = "0hm4lnf2mxvdvc13b67cwvyp7griir5lpacnb1sgjx4dxr0w4fzz";
1797 };
1798 dependencies = [];
1799
1800 };
1801
1802 vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1803 name = "vim-gitgutter-2016-07-12";
1804 src = fetchgit {
1805 url = "git://github.com/airblade/vim-gitgutter";
1806 rev = "26c6b549f287b8ae348eda083e7c77f79f4de28b";
1807 sha256 = "1jrz0vqd580y7psszq31jk4v4jdh2cvqvxgcy347simpc5ap16hs";
1808 };
1809 dependencies = [];
1810
1811 };
1812
1813 vim-iced-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1814 name = "vim-iced-coffee-script-2013-12-27";
1815 src = fetchgit {
1816 url = "git://github.com/noc7c9/vim-iced-coffee-script";
1817 rev = "e42e0775fa4b1f8840c55cd36ac3d1cedbc1dea2";
1818 sha256 = "14yfirny359rlrr082il2ys3hxiyrbbk794rdxrs2lasjy8rb1f7";
1819 };
1820 dependencies = [];
1821
1822 };
1823
1824 vim-latex-live-preview = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1825 name = "vim-latex-live-preview-2016-03-16";
1826 src = fetchgit {
1827 url = "git://github.com/xuhdev/vim-latex-live-preview";
1828 rev = "99501642c1dd3f703ac6301ae13469f4990b7a06";
1829 sha256 = "0dkm3v1jqi8aq0jfpa6fdwgbfbwidc32ci1y9vhqb1prs15qrqfl";
1830 };
1831 dependencies = [];
1832
1833 };
1834
1835 vim-multiple-cursors = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1836 name = "vim-multiple-cursors-2016-06-03";
1837 src = fetchgit {
1838 url = "git://github.com/terryma/vim-multiple-cursors";
1839 rev = "51d0717f63cc231f11b4b63ee5b611f589dce1b3";
1840 sha256 = "1s06wp4cjdmfvljzd9gz0wawkfcpkj8l2scjdx626ml740pnhmx8";
1841 };
1842 dependencies = [];
1843
1844 };
1845
1846 vim-signature = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1847 name = "vim-signature-2016-07-25";
1848 src = fetchgit {
1849 url = "git://github.com/kshenoy/vim-signature";
1850 rev = "537651a3a6dac10442f3e5ea2bb55a0bfd3324a6";
1851 sha256 = "0s0m75h8jqk0jykhhnjpw02ynvxw5pnsyjv0zb7n0azv96dvvznk";
1852 };
1853 dependencies = [];
1854
1855 };
1856
1857 vim-signify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1858 name = "vim-signify-2016-07-21";
1859 src = fetchgit {
1860 url = "git://github.com/mhinz/vim-signify";
1861 rev = "472668fbd286c8f8f3db0024a02056d4c25524b1";
1862 sha256 = "1lmap4amfrqngqdbp87kf9fhqnpshdacikkr9nkfry8l9mhhyqb9";
1863 };
1864 dependencies = [];
1865
1866 };
1867
1868 vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1869 name = "vim-snippets-2016-07-25";
1870 src = fetchgit {
1871 url = "git://github.com/honza/vim-snippets";
1872 rev = "8b054b0957c3c17aa458e549c5259ed84604f976";
1873 sha256 = "0mvawc4kr1r50jvl5khcd9443mnq85nansh0vj7ic4zz4rias8h4";
1874 };
1875 dependencies = [];
1876
1877 };
1878
1879 vim-webdevicons = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1880 name = "vim-webdevicons-2016-07-23";
1881 src = fetchgit {
1882 url = "git://github.com/ryanoasis/vim-devicons";
1883 rev = "87ee171b566cfd82bb9bfa3885c8020d83e699aa";
1884 sha256 = "081srlbxd3aw6hl818i7l31g85w4hsfkz67ga9ihhwjkd94sib4s";
1885 };
1886 dependencies = [];
1887
1888 };
1889
1890 vim2hs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1891 name = "vim2hs-2014-04-16";
1892 src = fetchgit {
1893 url = "git://github.com/dag/vim2hs";
1894 rev = "f2afd55704bfe0a2d66e6b270d247e9b8a7b1664";
1895 sha256 = "18lqrl3hqb6cmizc04bbnsh8j0g761w2q8wascbzzfw80dmxy36b";
1896 };
1897 dependencies = [];
1898
1899 };
1900
1901 vimwiki = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1902 name = "vimwiki-2016-05-18";
1903 src = fetchgit {
1904 url = "git://github.com/vimwiki/vimwiki";
1905 rev = "4831384ab9f1c40c9e433857d958c4d9a7beb8ec";
1906 sha256 = "1wjbsd37h5fxkkia90h708mmqisdj0kxzm9k97jm2zq36zngmd86";
1907 };
1908 dependencies = [];
1909
1910 };
1911
1912 vinegar = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1913 name = "vinegar-2016-06-30";
1914 src = fetchgit {
1915 url = "git://github.com/tpope/vim-vinegar";
1916 rev = "bd7f7b7929260072864462c04dde3b9f4c5e0d23";
1917 sha256 = "09shzlc9dagqlb5558nvm33b4bkk9cy34kp7zgnybphyy72wf31h";
1918 };
1919 dependencies = [];
1920
1921 };
1922
1923 vundle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1924 name = "vundle-2016-02-26";
1925 src = fetchgit {
1926 url = "git://github.com/gmarik/vundle";
1927 rev = "4984767509e3d05ca051e253c8a8b37de784be45";
1928 sha256 = "15450wz15pwv9sbvnmb60z5nshsssw4y1xy8smp332605b53kski";
1929 };
1930 dependencies = [];
1931
1932 };
1933}