1# TODO check that no license information gets lost
2{ fetchurl, bash, stdenv, python, cmake, vim, vimUtils, perl, ruby, unzip,
3 which, fetchgit, fetchFromGitHub, fetchhg, fetchzip, llvmPackages, zip,
4 vim_configurable, vimPlugins, xkb_switch, git
5}:
6
7let
8
9inherit (vimUtils.override {inherit vim;}) rtpPath addRtp buildVimPlugin
10 buildVimPluginFrom2Nix vimHelpTags;
11in
12
13# TL;DR
14# Add your plugin to ./vim-plugin-names
15# Generate via `vim-plugin-names-to-nix`
16# If plugin is complicated then create a PR to
17# https://github.com/jagajaga/vim-addon-vim2nix/tree/master/additional-nix-code
18
19# This attrs contains two sections:
20# The first contains plugins added manually, the second contains plugins
21# generated by call nix#ExportPluginsForNix.
22# Documentation & usage see vim-utils.nix.
23# attribute names should be the same as used by vim-pi to make dependency
24# resolution work
25rec {
26 # This is not a plugin, it provides bin/vim-open-buffer-with-plugins-derivations
27 # which recreates this the following derivations based on ./vim-plugin-names
28 pluginnames2nix = vimUtils.pluginnames2Nix {
29 name = "vim-plugin-names-to-nix";
30 namefiles = [./vim-plugin-names]; };
31
32 # Section I
33
34 # Section II
35 # Update with vimUtils.vimPlugins.pluginnames2Nix command
36
37 # aliasess
38 "sourcemap.vim" = sourcemap;
39 Colour_Sampler_Pack = Colour-Sampler-Pack;
40 YouCompleteMe = youcompleteme;
41 airline = vim-airline;
42 alternative = a-vim; # backwards compat, added 2014-10-21
43 calendar = calendar-vim;
44 coffee-script = vim-coffee-script;
45 coffeeScript = coffee-script; # backwards compat, added 2014-10-18
46 colors-solarized = Solarized;
47 colorsamplerpack = Colour_Sampler_Pack;
48 command_T = command-t; # backwards compat, added 2014-10-18
49 easy-align = vim-easy-align;
50 easymotion = vim-easymotion;
51 eighties = vim-eighties;
52 ghc-mod-vim = ghcmod;
53 gist-vim = Gist;
54 gitgutter = vim-gitgutter;
55 gundo = Gundo;
56 haskellConceal = haskellconceal; # backwards compat, added 2014-10-18
57 haskellconceal = vim-haskellconceal;
58 hier = vim-hier;
59 hoogle = Hoogle;
60 ipython = vim-ipython;
61 latex-live-preview = vim-latex-live-preview;
62 multiple-cursors = vim-multiple-cursors;
63 necoGhc = neco-ghc; # backwards compat, added 2014-10-18
64 neocomplete = neocomplete-vim;
65 neosnippet = neosnippet-vim;
66 nerdcommenter = The_NERD_Commenter;
67 nerdtree = The_NERD_tree;
68 quickrun = vim-quickrun;
69 signature = vim-signature;
70 stylish-haskell = vim-stylish-haskell;
71 stylishHaskell = stylish-haskell; # backwards compat, added 2014-10-18
72 supertab = Supertab;
73 syntastic = Syntastic;
74 tabular = Tabular;
75 tagbar = Tagbar;
76 thumbnail = thumbnail-vim;
77 tmux-navigator = vim-tmux-navigator;
78 tmuxNavigator = tmux-navigator; # backwards compat, added 2014-10-18
79 tslime = tslime-vim;
80 vimproc = vimproc-vim;
81 vimshell = vimshell-vim;
82 watchdogs = vim-watchdogs;
83 webapi-vim = WebAPI;
84 wombat256 = wombat256-vim; # backwards compat, added 2015-7-8
85 yankring = YankRing;
86
87
88 CheckAttach = buildVimPluginFrom2Nix { # created by nix#NixDerivation
89 name = "CheckAttach-2015-06-22";
90 src = fetchgit {
91 url = "git://github.com/chrisbra/CheckAttach";
92 rev = "a1d86be7e69b25b41ce1a7fe2d2844330f783b68";
93 sha256 = "b8921c826f5a122e9b128301c620b8b3d3fd88a15a2b0634fdea01062fba2c1f";
94 };
95 dependencies = [];
96
97 };
98
99 CSApprox = buildVimPluginFrom2Nix { # created by nix#NixDerivation
100 name = "CSApprox-2013-07-26";
101 src = fetchgit {
102 url = "git://github.com/godlygeek/csapprox";
103 rev = "7981dac51d8b6776985aa08cb7b5ee98ea7f2ddd";
104 sha256 = "8ccb47eb79c7ab63109d32158388812bdca340985527af4f2a5489ff8683389f";
105 };
106 dependencies = [];
107
108 };
109
110 Gist = buildVimPluginFrom2Nix { # created by nix#NixDerivation
111 name = "Gist-2015-07-04";
112 src = fetchgit {
113 url = "git://github.com/mattn/gist-vim";
114 rev = "52e2d54a038baf548de01c9413a6ebc8860fa111";
115 sha256 = "32b9c0ccc51b846651ac49d496060b842a57ca342bdc1038b16c59c1b34b0ca0";
116 };
117 dependencies = [];
118
119 };
120
121 Gundo = buildVimPluginFrom2Nix { # created by nix#NixDerivation
122 name = "Gundo";
123 src = fetchhg {
124 url = "https://bitbucket.org/sjl/gundo.vim";
125 rev = "eb9fc8676b89";
126 sha256 = "05lcxrd9ibfi02ja4jvl5y5pp884b8kh9aarw045b0mlldygv6cp";
127 };
128 dependencies = [];
129
130 };
131
132 Hoogle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
133 name = "Hoogle-2013-11-26";
134 src = fetchgit {
135 url = "git://github.com/Twinside/vim-hoogle";
136 rev = "81f28318b0d4174984c33df99db7752891c5c4e9";
137 sha256 = "0f96f3badb6218cac87d0f7027ff032ecc74f08ad3ada542898278ce11cbd5a0";
138 };
139 dependencies = [];
140
141 };
142
143 Solarized = buildVimPluginFrom2Nix { # created by nix#NixDerivation
144 name = "Solarized-2011-05-09";
145 src = fetchgit {
146 url = "git://github.com/altercation/vim-colors-solarized";
147 rev = "528a59f26d12278698bb946f8fb82a63711eec21";
148 sha256 = "a1b2ef696eee94dafa76431c31ee260acdd13a7cf87939f27eca431d5aa5a315";
149 };
150 dependencies = [];
151
152 };
153
154 Supertab = buildVimPluginFrom2Nix { # created by nix#NixDerivation
155 name = "Supertab-2015-02-15";
156 src = fetchgit {
157 url = "git://github.com/ervandew/supertab";
158 rev = "c8bfeceb1fc92ad58f2ae6967cbfcd6fbcb0d6e7";
159 sha256 = "e9e4054c683435b36adf87bebb4895c06a7e85130a807d8c9307588d4744b04b";
160 };
161 dependencies = [];
162
163 };
164
165 Syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation
166 name = "Syntastic-2015-07-29";
167 src = fetchgit {
168 url = "git://github.com/scrooloose/syntastic";
169 rev = "a01107ffa66fdd38d3ea0fcc769f3582349c5a3f";
170 sha256 = "66b2ef4ad41f30ed409c77e05e637b9c122e62a4acda98d2f89c9205227eba64";
171 };
172 dependencies = [];
173
174 };
175
176 Tabular = buildVimPluginFrom2Nix { # created by nix#NixDerivation
177 name = "Tabular-2013-05-16";
178 src = fetchgit {
179 url = "git://github.com/godlygeek/tabular";
180 rev = "60f25648814f0695eeb6c1040d97adca93c4e0bb";
181 sha256 = "28c860ad621587f2c3213fae47d1a3997746527c17d51e9ab94c209eb7bfeb0f";
182 };
183 dependencies = [];
184
185 };
186
187 Tagbar = buildVimPluginFrom2Nix { # created by nix#NixDerivation
188 name = "Tagbar-2015-06-19";
189 src = fetchgit {
190 url = "git://github.com/majutsushi/tagbar";
191 rev = "7b36c46d17d57db34fdb0adac9ba6382d0bb5e66";
192 sha256 = "346773e772772d1c68318effd8e6c8c8b36f61cfd9c72a85c0bfcec9843f13c7";
193 };
194 dependencies = [];
195
196 };
197
198 The_NERD_Commenter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
199 name = "The_NERD_Commenter-2015-07-26";
200 src = fetchgit {
201 url = "git://github.com/scrooloose/nerdcommenter";
202 rev = "5cc672a4f2adb734ac671499476034f0cd1d3d72";
203 sha256 = "a8ab1f90044bf96e9c105c4a3ff6bbd9aaa20bddbaca1d82d7ca15d2cc3c2654";
204 };
205 dependencies = [];
206
207 };
208
209 The_NERD_tree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
210 name = "The_NERD_tree-2015-07-13";
211 src = fetchgit {
212 url = "git://github.com/scrooloose/nerdtree";
213 rev = "86e2e40af161e65a3ad671214f16f23af360a5a7";
214 sha256 = "de4f35757f6e14644e59a7ba3e5d0a10ffe04aea9d192f2f81bba24d14c7595c";
215 };
216 dependencies = [];
217
218 };
219
220 UltiSnips = buildVimPluginFrom2Nix { # created by nix#NixDerivation
221 name = "UltiSnips-2015-07-27";
222 src = fetchgit {
223 url = "git://github.com/sirver/ultisnips";
224 rev = "67fbdb2ad8c965378bdd60c892d3a43049caf3f1";
225 sha256 = "487fd113adc9a2c66ae6c12cbbd21e283e1a9c024a65910398ecf26322772c07";
226 };
227 dependencies = [];
228
229 };
230
231 VimOutliner = buildVimPluginFrom2Nix { # created by nix#NixDerivation
232 name = "VimOutliner-2015-01-09";
233 src = fetchgit {
234 url = "git://github.com/vimoutliner/vimoutliner";
235 rev = "7c995f973c54b0d026137615af28059890edb197";
236 sha256 = "9d1526ec99904fd2ccfdb4dd6763b4cd04048cb74bb7a0a4c9b4a7b1f5d75cb5";
237 };
238 dependencies = [];
239
240 };
241
242 WebAPI = buildVimPluginFrom2Nix { # created by nix#NixDerivation
243 name = "WebAPI-2015-05-14";
244 src = fetchgit {
245 url = "git://github.com/mattn/webapi-vim";
246 rev = "6d577e49aeb81b4ede280161ca1e550c9328d098";
247 sha256 = "cb57200ada38ff5388e043075e900d3794020bb6f063a2845c71993e5543862a";
248 };
249 dependencies = [];
250
251 };
252
253 YankRing = buildVimPluginFrom2Nix { # created by nix#NixDerivation
254 name = "YankRing";
255 src = fetchurl {
256 url = "http://www.vim.org/scripts/download_script.php?src_id=23487";
257 name = "yankring_190.zip";
258 sha256 = "0nnxpsfjp2p9jvs3y5ynnd5s56snz9927zdp9bgmay2jgxfmp0si";
259 };
260 buildInputs = [ unzip ];
261 dependencies = [];
262 meta = {
263 url = "http://www.vim.org/scripts/script.php?script_id=1234";
264 };
265
266
267 };
268
269 commentary = buildVimPluginFrom2Nix { # created by nix#NixDerivation
270 name = "commentary-2015-07-27";
271 src = fetchgit {
272 url = "git://github.com/tpope/vim-commentary";
273 rev = "7fb632aab475b1d2560fe18a329742ba3b4725c6";
274 sha256 = "29f8f8a354a749b30b98940c32c09355cd29aa456a9bf83c2d5dc7cc8bc7c8fe";
275 };
276 dependencies = [];
277
278 };
279
280 ctrlp = buildVimPluginFrom2Nix { # created by nix#NixDerivation
281 name = "ctrlp-2013-07-29";
282 src = fetchgit {
283 url = "git://github.com/kien/ctrlp.vim";
284 rev = "b5d3fe66a58a13d2ff8b6391f4387608496a030f";
285 sha256 = "41f7884973770552395b96f8693da70999dc815462d4018c560d3ff6be462e76";
286 };
287 dependencies = [];
288
289 };
290
291 extradite = buildVimPluginFrom2Nix { # created by nix#NixDerivation
292 name = "extradite-2015-01-26";
293 src = fetchgit {
294 url = "git://github.com/int3/vim-extradite";
295 rev = "a1dc4b63befd5032e65a0c94e7257d4636aa6a3f";
296 sha256 = "94e05bbe36c9d4cee9832530531eedff0da509d5a0a52beee4e524fd4ad96714";
297 };
298 dependencies = [];
299
300 };
301
302 fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation
303 name = "fugitive-2015-07-20";
304 src = fetchgit {
305 url = "git://github.com/tpope/vim-fugitive";
306 rev = "03cc95cc198ea94a6a003a92cd0e58af4416ec25";
307 sha256 = "cab17591d0eeb0fff4520855347467d85baf56b444dd60b797323d164e92a9de";
308 };
309 dependencies = [];
310
311 };
312
313 ghcmod = buildVimPluginFrom2Nix { # created by nix#NixDerivation
314 name = "ghcmod-2015-07-26";
315 src = fetchgit {
316 url = "git://github.com/eagletmt/ghcmod-vim";
317 rev = "caf086cd84fe0b26f24f0f93233d4c0c98bce524";
318 sha256 = "04fa2558baab2b9d93c49f3d984f0ed8196513875095ab7117f39b02087bfeeb";
319 };
320 dependencies = [];
321
322 };
323
324 vim-addon-vim2nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
325 name = "vim-addon-vim2nix-2015-06-16";
326 src = fetchgit {
327 url = "git://github.com/JagaJaga/vim-addon-vim2nix";
328 rev = "046702653f7af5829a3f3fda3b7cf89c2a8d03b5";
329 sha256 = "b92068c32ce14e75159070acbd86c52e09aaa65a523fd566e44762ed33403161";
330 };
331 dependencies = ["vim-addon-manager"];
332
333 };
334
335 lushtags = buildVimPluginFrom2Nix { # created by nix#NixDerivation
336 name = "lushtags-2013-12-27";
337 src = fetchgit {
338 url = "git://github.com/bitc/lushtags";
339 rev = "429fab3b748ae04ee5de0cbf75d947f15441e798";
340 sha256 = "5170019fbe64b15be30a0ba82e6b01364d115ccad6ef690a6df86f73af22a0a7";
341 };
342 dependencies = [];
343
344 };
345
346 vim-hdevtools = buildVimPluginFrom2Nix { # created by nix#NixDerivation
347 name = "vim-hdevtools-2012-12-29";
348 src = fetchgit {
349 url = "git://github.com/bitc/vim-hdevtools";
350 rev = "474947c52ff9c93dd36f3c49de90bd9a78f0baa1";
351 sha256 = "bf5f096b665c51ce611c6c1bfddc3267c4b2f94af84b04482b07272a6a5a92f3";
352 };
353 dependencies = [];
354
355 };
356
357 vim-tmux-navigator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
358 name = "vim-tmux-navigator-2015-05-29";
359 src = fetchgit {
360 url = "git://github.com/christoomey/vim-tmux-navigator";
361 rev = "176452ead44118174ddad3502709a247d9c24bb4";
362 sha256 = "789c8b24b971a3b307ac296234230f1048ff2928c89302700bd4e5fc2edd2d8a";
363 };
364 dependencies = [];
365
366 };
367
368 neco-ghc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
369 name = "neco-ghc-2015-07-05";
370 src = fetchgit {
371 url = "git://github.com/eagletmt/neco-ghc";
372 rev = "2ad708360c8f64732a0827618cddfd23e89a8664";
373 sha256 = "ff18dcb7e5b076f88acc51dd508729635a76c619e592db010af6e877ff7afa92";
374 };
375 dependencies = [];
376
377 };
378
379 YUNOcommit-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
380 name = "YUNOcommit-vim-2014-11-26";
381 src = fetchgit {
382 url = "git://github.com/esneider/YUNOcommit.vim";
383 rev = "981082055a73ef076d7e27477874d2303153a448";
384 sha256 = "4bfd80720c353884e5c373b5457397a63e5e2e4ab4a97d6ce86c1740ac3b4c56";
385 };
386 dependencies = [];
387
388 };
389
390 idris-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
391 name = "idris-vim-2015-07-19";
392 src = fetchgit {
393 url = "git://github.com/idris-hackers/idris-vim";
394 rev = "91b695a9120268a9b9828a0665e89b3c39a1f070";
395 sha256 = "df16f45fd6c79f44c7da179c6cfc06e1d43aa801832249b12d8134c476db7ff9";
396 };
397 dependencies = [];
398
399 };
400
401 calendar-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
402 name = "calendar-vim-2015-06-28";
403 src = fetchgit {
404 url = "git://github.com/itchyny/calendar.vim";
405 rev = "9cf5b7a01d439c5093bac92364d06e29ed15f2f0";
406 sha256 = "7e3f98b72270447b471aae0f178d2b06292d3449007b41350c6145436d1da114";
407 };
408 dependencies = [];
409
410 };
411
412 thumbnail-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
413 name = "thumbnail-vim-2015-03-15";
414 src = fetchgit {
415 url = "git://github.com/itchyny/thumbnail.vim";
416 rev = "19bd717307a8d0986a4a77116f47168fbe11e178";
417 sha256 = "c8c100e1b0ee9c75fc3b6db00b68c47d91bcca8979f6de046aade43fd09e3882";
418 };
419 dependencies = [];
420
421 };
422
423 vim-ipython = buildVimPluginFrom2Nix { # created by nix#NixDerivation
424 name = "vim-ipython-2015-06-23";
425 src = fetchgit {
426 url = "git://github.com/ivanov/vim-ipython";
427 rev = "42499f094b805b90b683afa5009cee99abd0bb75";
428 sha256 = "7f59c3edde4c2b8555d703c96e855ca36665aacdca5a30d1e9e21c31bc252f2d";
429 };
430 dependencies = [];
431
432 };
433
434 vim-hier = buildVimPluginFrom2Nix { # created by nix#NixDerivation
435 name = "vim-hier-2011-08-27";
436 src = fetchgit {
437 url = "git://github.com/jceb/vim-hier";
438 rev = "0b8c365263551a67404ebd7e528c55e17c1d3de7";
439 sha256 = "f62836545abfe379f9c5410da28409947407cd282ef784b2db89aed0756a1785";
440 };
441 dependencies = [];
442 buildInputs = [ vim ];
443 };
444
445 vim-buffergator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
446 name = "vim-buffergator-2015-07-12";
447 src = fetchgit {
448 url = "git://github.com/jeetsukumaran/vim-buffergator";
449 rev = "28f818ea0aea6771c153efb91a35fc0ab9a16700";
450 sha256 = "d19710b41d24b2e5611e5c2977dc7fac47f3d9899b80c44da2f5d08b3538551a";
451 };
452 dependencies = [];
453
454 };
455
456 tslime-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
457 name = "tslime-vim-2015-02-10";
458 src = fetchgit {
459 url = "git://github.com/jgdavey/tslime.vim";
460 rev = "71ec1cbe8f9ead9805f8e0c3b76c590aeb5ed0b7";
461 sha256 = "81f45f579dcc239ce0b9689044d0e92969f7538759ab0cd88596c7a010d8730b";
462 };
463 dependencies = [];
464
465 };
466
467 vim-nerdtree-tabs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
468 name = "vim-nerdtree-tabs-2014-09-25";
469 src = fetchgit {
470 url = "git://github.com/jistr/vim-nerdtree-tabs";
471 rev = "0decec122e9bb3e9328b01fa20a9650e79cc6ca7";
472 sha256 = "ac4bfc3ae18e8a62ef8e20d0dd0a0f7c172d0ebd5fed58c533ccccec3ae7bdc2";
473 };
474 dependencies = [];
475
476 };
477
478 vim-golang = buildVimPluginFrom2Nix { # created by nix#NixDerivation
479 name = "vim-golang-2014-08-06";
480 src = fetchgit {
481 url = "git://github.com/jnwhiteh/vim-golang";
482 rev = "e6d0c6a72a66af2674b96233c4747661e0f47a8c";
483 sha256 = "1231a2eff780dbff4f885fcb4f656f7dd70597e1037ca800470de03bf0c5e7af";
484 };
485 dependencies = [];
486
487 };
488
489 vim-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
490 name = "vim-xdebug-2012-08-15";
491 src = fetchgit {
492 url = "git://github.com/joonty/vim-xdebug";
493 rev = "a4980fa65f7f159780593ee37c178281691ba2c4";
494 sha256 = "1ccb0e63eaf68548feb1c37b09c07c84b6bea9b350c4257549f091aa414601e2";
495 };
496 dependencies = [];
497 postInstall = false;
498 };
499
500 vim-eighties = buildVimPluginFrom2Nix { # created by nix#NixDerivation
501 name = "vim-eighties-2015-06-15";
502 src = fetchgit {
503 url = "git://github.com/justincampbell/vim-eighties";
504 rev = "68dc644664bf569e96ac91f79fdf828e89d70e02";
505 sha256 = "d6600665179395141d660c65dad3e03c13aeba164a6c1e6fabfc9e2499588132";
506 };
507 dependencies = [];
508
509 };
510
511 latex-box = buildVimPluginFrom2Nix { # created by nix#NixDerivation
512 name = "latex-box-2015-06-01";
513 src = fetchgit {
514 url = "git://github.com/latex-box-team/latex-box";
515 rev = "3c2901e12cb78bfb2be58ba4c62a488612550fe1";
516 sha256 = "8af2c45209c39438da8481183a1f14885891db73454bb4b16d24799453184e81";
517 };
518 dependencies = [];
519
520 };
521
522 vim-jinja = buildVimPluginFrom2Nix { # created by nix#NixDerivation
523 name = "vim-jinja-2014-06-11";
524 src = fetchgit {
525 url = "git://github.com/lepture/vim-jinja";
526 rev = "4412484b410b15caecd71f2e52758b2a90ea124d";
527 sha256 = "650c7f23688e8982f30be3f7d45b73d9c1d283f10a6829e518e2583b4a52befc";
528 };
529 dependencies = [];
530
531 };
532
533 vim-easymotion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
534 name = "vim-easymotion-2015-07-25";
535 src = fetchgit {
536 url = "git://github.com/lokaltog/vim-easymotion";
537 rev = "eab003a0991608464b58c90c56be5d9c6b64d840";
538 sha256 = "6f5d4942481c41c1a88c45066ea51019ee4ecd4235e0f54c549cb7df2b8b59e6";
539 };
540 dependencies = [];
541
542 };
543
544 vim-xkbswitch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
545 name = "vim-xkbswitch-2015-07-26";
546 src = fetchgit {
547 url = "git://github.com/lyokha/vim-xkbswitch";
548 rev = "eba2979fa3d11dc09d4ef9ef3854926f28b783a4";
549 sha256 = "f51ff00ad6e40ba9f31be18fee5e6f80cf48c51872392a0dafe08477749b74bd";
550 };
551 dependencies = [];
552 patchPhase = ''
553 substituteInPlace plugin/xkbswitch.vim \
554 --replace /usr/local/lib/libxkbswitch.so ${xkb_switch}/lib/libxkbswitch.so
555 '';
556 buildInputs = [ xkb_switch ];
557 };
558
559 vim-stylish-haskell = buildVimPluginFrom2Nix { # created by nix#NixDerivation
560 name = "vim-stylish-haskell-2015-05-10";
561 src = fetchgit {
562 url = "git://github.com/nbouscal/vim-stylish-haskell";
563 rev = "c664376ba814de3f87cb7641f90b2c6a9dd53671";
564 sha256 = "12a9aad40112200060c3ee86f96589a264db287bdfeb3eb6fdf0f22a6656a5f6";
565 };
566 dependencies = [];
567
568 };
569
570 shabadou-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
571 name = "shabadou-vim-2014-07-27";
572 src = fetchgit {
573 url = "git://github.com/osyo-manga/shabadou.vim";
574 rev = "c5af30bb0c028d53cfd89e00cab636c844034a9a";
575 sha256 = "392efa8a5e725219e478b571d9a30ddba88d47662467ed3123a168e8b55c4de6";
576 };
577 dependencies = [];
578
579 };
580
581 vim-watchdogs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
582 name = "vim-watchdogs-2015-07-29";
583 src = fetchgit {
584 url = "git://github.com/osyo-manga/vim-watchdogs";
585 rev = "e1fce3b4bbe07d55bd7340d25ca0dc900747ad6f";
586 sha256 = "72ec214364c674ee1ccd29a6dae925e6cbcaf90e57fef133385a96319108dd2c";
587 };
588 dependencies = [];
589
590 };
591
592 racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
593 name = "racer-2015-07-29";
594 src = fetchgit {
595 url = "git://github.com/phildawes/racer";
596 rev = "25150ce32e5936b38933d66324830fedb95a8c7c";
597 sha256 = "40a3d9c22f50f69e45e8f551a655c2ca327fd07b8872059f2938983387e07707";
598 };
599 dependencies = [];
600 buildPhase = ''
601 find . -type f -not -name 'racer.vim' -exec rm -rf {} \;
602 rm -rf editors images src
603 '';
604 };
605
606 neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
607 name = "neocomplete-vim-2015-07-25";
608 src = fetchgit {
609 url = "git://github.com/shougo/neocomplete.vim";
610 rev = "aaa1f08b06bfcc2a329dba12a37ce8e1578636bd";
611 sha256 = "56c2dc4431858432763bcf134ebbc74272d6f3cdd2db5f9a8b21f2e4a8b028c8";
612 };
613 dependencies = [];
614
615 };
616
617 neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
618 name = "neosnippet-snippets-2015-07-27";
619 src = fetchgit {
620 url = "git://github.com/shougo/neosnippet-snippets";
621 rev = "a34e67d4b3f91bf2320cd7ce1e85bbd300c6095e";
622 sha256 = "773170fddb95bc5df1b26abc52e29338f3d5515a5afd99719aa23d9569c5389d";
623 };
624 dependencies = [];
625
626 };
627
628 neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
629 name = "neosnippet-vim-2015-07-23";
630 src = fetchgit {
631 url = "git://github.com/shougo/neosnippet.vim";
632 rev = "e619d43571a675057461f29f2c039dab64728f32";
633 sha256 = "8682bba6039962c01ffa0f9946a1f2a8e8a37ffda2d32862d72c5ee3d87241c5";
634 };
635 dependencies = [];
636
637 };
638
639 vimproc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
640 name = "vimproc-vim-2015-07-22";
641 src = fetchgit {
642 url = "git://github.com/shougo/vimproc.vim";
643 rev = "0555aecded8737435747e903efc4b6f3241cc62c";
644 sha256 = "0a9445214c6733d21d56ebe278f2e0bc1027b08eb7763df95b8d0ebd34850a60";
645 };
646 dependencies = [];
647 buildInputs = [ which ];
648
649 buildPhase = ''
650 sed -i 's/vimproc_mac\.so/vimproc_unix\.so/' autoload/vimproc.vim
651 make -f make_unix.mak
652 '';
653 };
654
655 vimshell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
656 name = "vimshell-vim-2015-07-25";
657 src = fetchgit {
658 url = "git://github.com/shougo/vimshell.vim";
659 rev = "adb2a0d95e9b0009d152c35c930eb04875562d87";
660 sha256 = "fe52fef67c242756c67ec134634b380077e16729d59b1dcd8f50e41512010723";
661 };
662 dependencies = [ "vimproc-vim" ];
663 };
664
665 vim-hardtime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
666 name = "vim-hardtime-2014-10-21";
667 src = fetchgit {
668 url = "git://github.com/takac/vim-hardtime";
669 rev = "b401c72528d1c23e4cc9bc9585fda4361d0199bf";
670 sha256 = "65e4bda7531076147fc46f496c8e56c740d1fcf8fe85c18cb2d2070d0c3803cd";
671 };
672 dependencies = [];
673
674 };
675
676 vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation
677 name = "vim-quickrun-2015-07-27";
678 src = fetchgit {
679 url = "git://github.com/thinca/vim-quickrun";
680 rev = "c22f2f50614a68d8f60ae334cc4545dbc57051a9";
681 sha256 = "fef4f13c3d1946040cb4e4ceba6a89759fc77c1f72f2f7f038df644620a41398";
682 };
683 dependencies = [];
684
685 };
686
687 hasksyn = buildVimPluginFrom2Nix { # created by nix#NixDerivation
688 name = "hasksyn-2014-09-03";
689 src = fetchgit {
690 url = "git://github.com/travitch/hasksyn";
691 rev = "c434040bf13a17ca20a551223021b3ace7e453b9";
692 sha256 = "b1a735928aeca7011b83133959d59b9c95ab8535fd00ce9968fae4c3b1381931";
693 };
694 dependencies = [];
695
696 };
697
698 vim-haskellconceal = buildVimPluginFrom2Nix { # created by nix#NixDerivation
699 name = "vim-haskellconceal-2014-10-28";
700 src = fetchgit {
701 url = "git://github.com/twinside/vim-haskellconceal";
702 rev = "f73c5dd660b7009a050b131783d7c17b4954e4d9";
703 sha256 = "1ebf98b170642d342207eb8c16551f9969f884b3be975b8755f1018947053ba8";
704 };
705 dependencies = [];
706
707 };
708
709 youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation
710 name = "youcompleteme-2015-07-08";
711 src = fetchgit {
712 url = "git://github.com/valloric/youcompleteme";
713 rev = "b9dd9096a34c1d720878f0058dc3e68f9e9c87ea";
714 sha256 = "88a3ff421300f53756359ec8e6c901fe96de492091587cf9a5e40b299698f077";
715 };
716 dependencies = [];
717 buildInputs = [
718 python cmake
719 (if stdenv.isDarwin then llvmPackages.clang else llvmPackages.clang-unwrapped)
720 llvmPackages.llvm
721 ];
722
723 configurePhase = ":";
724
725 buildPhase = ''
726 patchShebangs .
727
728 target=$out/${rtpPath}/youcompleteme
729 mkdir -p $target
730 cp -a ./ $target
731
732 mkdir $target/build
733 cd $target/build
734 cmake -G "Unix Makefiles" . $target/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
735 make ycm_support_libs -j''${NIX_BUILD_CORES} -l''${NIX_BUILD_CORES}}
736 ${bash}/bin/bash $target/install.sh --clang-completer --system-libclang
737
738 ${vimHelpTags}
739 vimHelpTags $target
740 '';
741
742 # TODO: implement proper install phase rather than keeping everything in store
743 # TODO: support llvm based C completion, See README of git repository
744 installPhase = ":";
745
746 meta = {
747 description = "Fastest non utf-8 aware word and C completion engine for Vim";
748 homepage = http://github.com/Valloric/YouCompleteMe;
749 license = stdenv.lib.licenses.gpl3;
750 maintainers = with stdenv.lib.maintainers; [marcweber jagajaga];
751 platforms = stdenv.lib.platforms.linux;
752 };
753 };
754
755 Colour-Sampler-Pack = buildVimPluginFrom2Nix { # created by nix#NixDerivation
756 name = "Colour-Sampler-Pack-2012-11-29";
757 src = fetchgit {
758 url = "git://github.com/vim-scripts/Colour-Sampler-Pack";
759 rev = "05cded87b2ef29aaa9e930230bb88e23abff4441";
760 sha256 = "e3dd18f9fd36543e0c87257b7eaa999a82d75cbfa6dce4dfea403fa751c8620f";
761 };
762 dependencies = [];
763
764 };
765
766 a-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
767 name = "a-vim-2010-11-06";
768 src = fetchgit {
769 url = "git://github.com/vim-scripts/a.vim";
770 rev = "2cbe946206ec622d9d8cf2c99317f204c4d41885";
771 sha256 = "ca0982873ed81e7f6545a6623b735104c574fe580d5f21b0aa3dc1557edac240";
772 };
773 dependencies = [];
774
775 };
776
777 align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
778 name = "align-2012-08-07";
779 src = fetchgit {
780 url = "git://github.com/vim-scripts/align";
781 rev = "787662fe90cd057942bc5b682fd70c87e1a9dd77";
782 sha256 = "f7b5764357370f03546556bd45558837f3790b0e86afadb63cd04d714a668a29";
783 };
784 dependencies = [];
785
786 };
787
788 changeColorScheme-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
789 name = "changeColorScheme-vim-2010-10-17";
790 src = fetchgit {
791 url = "git://github.com/vim-scripts/changeColorScheme.vim";
792 rev = "b041d49f828629d72f2232531a230d1ec5de2405";
793 sha256 = "094ccc132dc3991a30feb31bbdd777755294957e843517491345a4999e86cb5f";
794 };
795 dependencies = [];
796
797 };
798
799 random-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
800 name = "random-vim-2010-10-17";
801 src = fetchgit {
802 url = "git://github.com/vim-scripts/random.vim";
803 rev = "b2d85eb24a38074eab37a5acf2a295e1f2ad8989";
804 sha256 = "571f4ed0a2d8c66d1c15029fb812a84b55228d07cd2e4bbbc73a33493013fed3";
805 };
806 dependencies = [];
807
808 };
809
810 tabmerge = buildVimPluginFrom2Nix { # created by nix#NixDerivation
811 name = "tabmerge-2010-10-17";
812 src = fetchgit {
813 url = "git://github.com/vim-scripts/tabmerge";
814 rev = "074e5f06f26e7108a0570071a0f938a821768c06";
815 sha256 = "b84501b0fc5cd51bbb58f12f4c2b3a7c97b03fe2a76446b56a2c111bd4f7335f";
816 };
817 dependencies = [];
818
819 };
820
821 wombat256-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
822 name = "wombat256-vim-2010-10-17";
823 src = fetchgit {
824 url = "git://github.com/vim-scripts/wombat256.vim";
825 rev = "8734ba45dcf5e38c4d2686b35c94f9fcb30427e2";
826 sha256 = "2feb7d57ab0a9f2ea44ccd606e540db64ab3285956398a50ecc562d7b8dbcd05";
827 };
828 dependencies = [];
829
830 };
831
832 vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
833 name = "vim-wakatime-2015-07-03";
834 src = fetchgit {
835 url = "git://github.com/wakatime/vim-wakatime";
836 rev = "28044b7b5f5be812fd34c757632d1d814578ec9b";
837 sha256 = "74fa0eac0a546c7012b4a6fe5f6cd66eaa2ed40887bc61d468be148dcd538692";
838 };
839 dependencies = [];
840 buildInputs = [ python ];
841 };
842
843 command-t = buildVimPluginFrom2Nix { # created by nix#NixDerivation
844 name = "command-t-2015-04-29";
845 src = fetchgit {
846 url = "git://github.com/wincent/command-t";
847 rev = "f7344ebbe95c532b2ad01f19877d6d611db0193b";
848 sha256 = "21d7ee2bbff3f79ec3c81bcf683acac6528ea89faef8b7dd075cc83662930a50";
849 };
850 dependencies = [];
851 buildInputs = [ perl ruby ];
852 buildPhase = ''
853 pushd ruby/command-t
854 ruby extconf.rb
855 make
856 popd
857 '';
858 };
859
860 matchit-zip = buildVimPluginFrom2Nix { # created by nix#NixDerivation
861 name = "matchit-zip";
862 src = fetchurl {
863 url = "http://www.vim.org/scripts/download_script.php?src_id=8196";
864 name = "matchit.zip";
865 sha256 = "1bbm8j1bhb70kagwdimwy9vcvlrz9ax5bk2a7wrmn4cy87f9xj4l";
866 };
867 buildInputs = [ unzip ];
868 dependencies = [];
869 meta = {
870 url = "http://www.vim.org/scripts/script.php?script_id=39";
871 };
872
873 unpackPhase = ''
874 (
875 sourceRoot=d
876 mkdir $sourceRoot; cd $sourceRoot;
877 unzip $src
878 )
879 '';
880 };
881
882 pathogen = buildVimPluginFrom2Nix { # created by nix#NixDerivation
883 name = "pathogen-2014-11-06";
884 src = fetchgit {
885 url = "git://github.com/tpope/vim-pathogen";
886 rev = "b9fb0dfd811004010f5f6903edef42d6004ebea2";
887 sha256 = "62ec7e9721651aa86aa716d47c2057771f7d093f414c3b98f50a759d210db4c7";
888 };
889 dependencies = [];
890
891 };
892
893 quickfixstatus = buildVimPluginFrom2Nix { # created by nix#NixDerivation
894 name = "quickfixstatus-2011-09-02";
895 src = fetchgit {
896 url = "git://github.com/dannyob/quickfixstatus";
897 rev = "fd3875b914fc51bbefefa8c4995588c088163053";
898 sha256 = "7b6831d5da1c23d95f3158c67e4376d32c2f62ab2e30d02d3f3e14dcfd867d9b";
899 };
900 dependencies = [];
901
902 };
903
904 rainbow_parentheses = buildVimPluginFrom2Nix { # created by nix#NixDerivation
905 name = "rainbow_parentheses-2013-03-04";
906 src = fetchgit {
907 url = "git://github.com/kien/rainbow_parentheses.vim";
908 rev = "eb8baa5428bde10ecc1cb14eed1d6e16f5f24695";
909 sha256 = "47975a426d06f41811882691d8a51f32bc72f590477ed52b298660486b2488e3";
910 };
911 dependencies = [];
912
913 };
914
915 rust = buildVimPluginFrom2Nix { # created by nix#NixDerivation
916 name = "rust-2015-01-29";
917 src = fetchgit {
918 url = "git://github.com/wting/rust.vim";
919 rev = "2450ecf3091cc7c2711ca9f00eae8e3bedd04376";
920 sha256 = "9d2e8b2c06d6100f9a1e76644313d457a2ff955241d8f712de6fddd0b7f5c4ee";
921 };
922 dependencies = [];
923
924 };
925
926 sensible = buildVimPluginFrom2Nix { # created by nix#NixDerivation
927 name = "sensible-2015-04-04";
928 src = fetchgit {
929 url = "git://github.com/tpope/vim-sensible";
930 rev = "d0beb8ab42627bea2c747564ca46ec663e3ba0ba";
931 sha256 = "c1893990e7b0b3f409b2ec4f4e1fb7f00f61a5146b94314ad28d86231d3ab6f7";
932 };
933 dependencies = [];
934
935 };
936
937 sleuth = buildVimPluginFrom2Nix { # created by nix#NixDerivation
938 name = "sleuth-2015-06-07";
939 src = fetchgit {
940 url = "git://github.com/tpope/vim-sleuth";
941 rev = "a17462708aa40a7fc0afd4effa559087d8a2c908";
942 sha256 = "72f4b7c5e60c942592e624806960736e71b9f109fbbfa3a5a2a37970b90f6025";
943 };
944 dependencies = [];
945
946 };
947
948 snipmate = buildVimPluginFrom2Nix { # created by nix#NixDerivation
949 name = "snipmate-2015-07-23";
950 src = fetchgit {
951 url = "git://github.com/garbas/vim-snipmate";
952 rev = "c86c64508a5b0309040429460c3a13fb90ac708e";
953 sha256 = "7cd7dfd4230fd9bb75744a376c0e789c6d734e08158ca055a2ada1298b71360e";
954 };
955 dependencies = ["vim-addon-mw-utils" "tlib"];
956
957 };
958
959 sourcemap = buildVimPluginFrom2Nix { # created by nix#NixDerivation
960 name = "sourcemap-2012-09-19";
961 src = fetchgit {
962 url = "git://github.com/chikatoike/sourcemap.vim";
963 rev = "0dd82d40faea2fdb0771067f46c01deb41610ba1";
964 sha256 = "a08c77aea39be4a0a980d62673d1d17fecc518a8aeb9101210e453aaacb78fbd";
965 };
966 dependencies = [];
967
968 };
969
970 surround = buildVimPluginFrom2Nix { # created by nix#NixDerivation
971 name = "surround-2015-03-15";
972 src = fetchgit {
973 url = "git://github.com/tpope/vim-surround";
974 rev = "772ab9587b7d1e2c3bae75395c9123803059ba8a";
975 sha256 = "5f4c5afecaa99dc67875a2356b46cb6e8daeffca4a00a451965ca022de26cbef";
976 };
977 dependencies = [];
978
979 };
980
981 table-mode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
982 name = "table-mode-2015-06-05";
983 src = fetchgit {
984 url = "git://github.com/dhruvasagar/vim-table-mode";
985 rev = "5395c9f52b91ae6083fd7b26577b8f926da6871e";
986 sha256 = "784e51f7144790fcfad83c2dc5c7f250608826ce48706b80c41f88fa04914ae2";
987 };
988 dependencies = [];
989
990 };
991
992 taglist = buildVimPluginFrom2Nix { # created by nix#NixDerivation
993 name = "taglist";
994 src = fetchurl {
995 url = "http://www.vim.org/scripts/download_script.php?src_id=19574";
996 name = "taglist_46.zip";
997 sha256 = "18cbv462vwg7vip2p99qlahm99hswav96cj4ki227kyi05q2lkjj";
998 };
999 buildInputs = [ unzip ];
1000 dependencies = [];
1001 meta = {
1002 url = "http://www.vim.org/scripts/script.php?script_id=273";
1003 };
1004
1005 setSourceRoot = ''
1006 export sourceRoot=taglist
1007 mkdir taglist
1008 mv doc taglist
1009 mv plugin taglist
1010 '';
1011 };
1012
1013 tlib = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1014 name = "tlib-2015-05-20";
1015 src = fetchgit {
1016 url = "git://github.com/tomtom/tlib_vim";
1017 rev = "c9ffbef0718a35bd30eb711456e2100e4adf79f7";
1018 sha256 = "b0752538ee629c6f2c52d3b2b2fb61247bcd186ef9610ad8ae5c7d24ea41d971";
1019 };
1020 dependencies = [];
1021
1022 };
1023
1024 undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1025 name = "undotree-2015-03-01";
1026 src = fetchgit {
1027 url = "git://github.com/mbbill/undotree";
1028 rev = "fa018f38252f58073f2987f8bf0d2d4a61e07277";
1029 sha256 = "c52874b0b85d0a44a1f2f055a74985886af97615bac032259fc21d6ea40d6ca7";
1030 };
1031 dependencies = [];
1032
1033 };
1034
1035 vim-addon-actions = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1036 name = "vim-addon-actions-2014-09-22";
1037 src = fetchgit {
1038 url = "git://github.com/MarcWeber/vim-addon-actions";
1039 rev = "a5d20500fb8812958540cf17862bd73e7af64936";
1040 sha256 = "d2c3eb7a1f29e7233c6fcf3b02d07efebe8252d404ee593419ad399a5fdf6383";
1041 };
1042 dependencies = ["vim-addon-mw-utils" "tlib"];
1043
1044 };
1045
1046 vim-addon-async = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1047 name = "vim-addon-async-2013-10-18";
1048 src = fetchgit {
1049 url = "git://github.com/MarcWeber/vim-addon-async";
1050 rev = "dadc96e188f1cdacbac62129eb29a1eacfed792c";
1051 sha256 = "27f941e21a8ca5940bd20914e2a9e3809e554f3ef2c27b3bafb9a153107a5d07";
1052 };
1053 dependencies = ["vim-addon-signs"];
1054
1055 };
1056
1057 vim-addon-background-cmd = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1058 name = "vim-addon-background-cmd-2015-01-05";
1059 src = fetchgit {
1060 url = "git://github.com/MarcWeber/vim-addon-background-cmd";
1061 rev = "e99076519139b959edce0581b0f31207a5ec7c64";
1062 sha256 = "524795221ae727635fe52ead47dff452d2dd48900917da609426ea399a2eceeb";
1063 };
1064 dependencies = ["vim-addon-mw-utils"];
1065
1066 };
1067
1068 vim-addon-commenting = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1069 name = "vim-addon-commenting-2013-06-10";
1070 src = fetchgit {
1071 url = "git://github.com/MarcWeber/vim-addon-commenting";
1072 rev = "b7cf748ac1c9bf555cbd347589e3b7196030d20b";
1073 sha256 = "4ad7d5f6669f0a1b4a24c9ce3649c030d7d3fc8588de4d4d6c3269140fbe9b3e";
1074 };
1075 dependencies = [];
1076
1077 };
1078
1079 vim-addon-completion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1080 name = "vim-addon-completion-2015-02-10";
1081 src = fetchgit {
1082 url = "git://github.com/MarcWeber/vim-addon-completion";
1083 rev = "021c449a5ce1ce4ac0af5955e05b0279c1cc0e75";
1084 sha256 = "969a474749edf7e4443d2540eaf12e891cc0a3f5533e62e081d32408f403a0ea";
1085 };
1086 dependencies = ["tlib"];
1087
1088 };
1089
1090 vim-addon-errorformats = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1091 name = "vim-addon-errorformats-2014-11-05";
1092 src = fetchgit {
1093 url = "git://github.com/MarcWeber/vim-addon-errorformats";
1094 rev = "dcbb203ad5f56e47e75fdee35bc92e2ba69e1d28";
1095 sha256 = "a1260206545d5ae17f2e6b3319f5cf1808b74e792979b1c6667d75974cc53f95";
1096 };
1097 dependencies = [];
1098
1099 };
1100
1101 vim-addon-goto-thing-at-cursor = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1102 name = "vim-addon-goto-thing-at-cursor-2012-01-11";
1103 src = fetchgit {
1104 url = "git://github.com/MarcWeber/vim-addon-goto-thing-at-cursor";
1105 rev = "f052e094bdb351829bf72ae3435af9042e09a6e4";
1106 sha256 = "34658ac99d9a630db9c544b3dfcd2c3df69afa5209e27558cc022b7afc2078ea";
1107 };
1108 dependencies = ["tlib"];
1109
1110 };
1111
1112 vim-addon-local-vimrc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1113 name = "vim-addon-local-vimrc-2015-03-19";
1114 src = fetchgit {
1115 url = "git://github.com/MarcWeber/vim-addon-local-vimrc";
1116 rev = "6a27f95b35befa70cd0d049329cd0920566c764b";
1117 sha256 = "f0687e08f380ff085b6fa3e708d1631049571706f55d796e22612aff02e51459";
1118 };
1119 dependencies = [];
1120
1121 };
1122
1123 vim-addon-manager = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1124 name = "vim-addon-manager-2014-12-03";
1125 src = fetchgit {
1126 url = "git://github.com/MarcWeber/vim-addon-manager";
1127 rev = "fda9d2f4522024aa8bd8b8305e6a71c4a4a28c07";
1128 sha256 = "a3b5da9bcc01c6f0fb0a5e13a6f9efb58471339ed32c480fde96856bb9e1e7be";
1129 };
1130 dependencies = [];
1131
1132 };
1133
1134 vim-addon-mru = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1135 name = "vim-addon-mru-2013-08-08";
1136 src = fetchgit {
1137 url = "git://github.com/MarcWeber/vim-addon-mru";
1138 rev = "e41e39bd9d1bf78ccfd8d5e1bc05ae5e1026c2bb";
1139 sha256 = "15b70f796f28cbd999060fea7f47408fa8a6cb176cd4915b9cc3dc6c53eed960";
1140 };
1141 dependencies = ["vim-addon-other" "vim-addon-mw-utils"];
1142
1143 };
1144
1145 vim-addon-mw-utils = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1146 name = "vim-addon-mw-utils-2012-11-05";
1147 src = fetchgit {
1148 url = "git://github.com/MarcWeber/vim-addon-mw-utils";
1149 rev = "0c5612fa31ee434ba055e21c76f456244b3b5109";
1150 sha256 = "4e1b6d1b59050f1063e58ef4bee9e9603616ad184cd9ef7466d0ec3d8e22b91c";
1151 };
1152 dependencies = [];
1153
1154 };
1155
1156 vim-addon-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1157 name = "vim-addon-nix-2015-03-10";
1158 src = fetchgit {
1159 url = "git://github.com/MarcWeber/vim-addon-nix";
1160 rev = "2aed79ba5d8c5e6abd102de77e55e242f61b17f1";
1161 sha256 = "0e326e2c6cb6597ca533a64a845ef9dd946cd249250375ef9775d974ecef37e2";
1162 };
1163 dependencies = ["vim-addon-completion" "vim-addon-goto-thing-at-cursor" "vim-addon-errorformats" "vim-addon-actions" "vim-addon-mw-utils" "tlib"];
1164
1165 };
1166
1167 vim-addon-other = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1168 name = "vim-addon-other-2014-07-15";
1169 src = fetchgit {
1170 url = "git://github.com/MarcWeber/vim-addon-other";
1171 rev = "f78720c9cb5bf871cabb13c7cbf94378dbf0163b";
1172 sha256 = "43f027e4b7576031072515c23c2b09f7f2c8bba7ee43a1e2041a4371bd954d1b";
1173 };
1174 dependencies = ["vim-addon-actions" "vim-addon-mw-utils"];
1175
1176 };
1177
1178 vim-addon-php-manual = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1179 name = "vim-addon-php-manual-2015-01-01";
1180 src = fetchgit {
1181 url = "git://github.com/MarcWeber/vim-addon-php-manual";
1182 rev = "5f9810dd1f6e9f36a45f637ae6260ccff09256ff";
1183 sha256 = "3942eb6a7191c308beab240e91c99ee4e2c52e2d672503d46f98312e823b86cd";
1184 };
1185 dependencies = [];
1186
1187 };
1188
1189 vim-addon-signs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1190 name = "vim-addon-signs-2013-04-19";
1191 src = fetchgit {
1192 url = "git://github.com/MarcWeber/vim-addon-signs";
1193 rev = "17a49f293d18174ff09d1bfff5ba86e8eee8e8ae";
1194 sha256 = "a9c03a32e758d51106741605188cb7f00db314c73a26cae75c0c9843509a8fb8";
1195 };
1196 dependencies = [];
1197
1198 };
1199
1200 vim-addon-sql = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1201 name = "vim-addon-sql-2014-01-18";
1202 src = fetchgit {
1203 url = "git://github.com/MarcWeber/vim-addon-sql";
1204 rev = "05b8a0c211f1ae4c515c64e91dec555cdf20d90b";
1205 sha256 = "a1334ae694e0a03229bacc8ba7e08e7223df240244c7378e3f1bd91d74e957c2";
1206 };
1207 dependencies = ["vim-addon-completion" "vim-addon-background-cmd" "tlib"];
1208
1209 };
1210
1211 vim-addon-syntax-checker = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1212 name = "vim-addon-syntax-checker-2013-07-12";
1213 src = fetchgit {
1214 url = "git://github.com/MarcWeber/vim-addon-syntax-checker";
1215 rev = "8eb7217e636ca717d4de5cd03cc0180c5b66ae77";
1216 sha256 = "aef048e664653b5007df71ac24ed34ec55d8938c763d3f80885a122e445a9b3d";
1217 };
1218 dependencies = ["vim-addon-mw-utils" "tlib"];
1219
1220 };
1221
1222 vim-addon-toggle-buffer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1223 name = "vim-addon-toggle-buffer-2012-01-13";
1224 src = fetchgit {
1225 url = "git://github.com/MarcWeber/vim-addon-toggle-buffer";
1226 rev = "a1b38b9c5709cba666ed2d84ef06548f675c6b0b";
1227 sha256 = "672166ecfe0599177afb56b444366f587f77e9659c256ac4e41ee45cb2df6055";
1228 };
1229 dependencies = ["vim-addon-mw-utils" "tlib"];
1230
1231 };
1232
1233 vim-addon-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1234 name = "vim-addon-xdebug-2014-08-29";
1235 src = fetchgit {
1236 url = "git://github.com/MarcWeber/vim-addon-xdebug";
1237 rev = "45f26407305b4ce6f8f5f37d2b5e6e4354104172";
1238 sha256 = "0a7bf2caf36772c94bd25bfbf46bf628623809c9cfab447ff788eb74149464ef";
1239 };
1240 dependencies = ["WebAPI" "vim-addon-mw-utils" "vim-addon-signs" "vim-addon-async"];
1241
1242 };
1243
1244 vim-airline = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1245 name = "vim-airline-2015-07-08";
1246 src = fetchgit {
1247 url = "git://github.com/bling/vim-airline";
1248 rev = "cdc6d98a09db60d3dda58815616f78338cbdaa9d";
1249 sha256 = "bbbe04c92842d4110971396011f41ad1175b6c3b0f1d516c286cc7aca4c7052a";
1250 };
1251 dependencies = [];
1252
1253 };
1254
1255 vim-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1256 name = "vim-coffee-script-2015-04-20";
1257 src = fetchgit {
1258 url = "git://github.com/kchmck/vim-coffee-script";
1259 rev = "32fe889b8cafd3a4921ef8e6485156453ff58c42";
1260 sha256 = "d7162b2546c9949c96811d7a72c17ae2db9871697ee65ed0b1a8f0287d278690";
1261 };
1262 dependencies = [];
1263
1264 };
1265
1266 vim-easy-align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1267 name = "vim-easy-align-2015-07-20";
1268 src = fetchgit {
1269 url = "git://github.com/junegunn/vim-easy-align";
1270 rev = "1206c65dcb87488900b5ac193965268f0ce2c574";
1271 sha256 = "60de7c9c5b916e6cd9bc9e5bef0a7d2a831a7ab6cf2231b7f7b29017559bc33a";
1272 };
1273 dependencies = [];
1274
1275 };
1276
1277 vim-gista = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1278 name = "vim-gista-2015-06-04";
1279 src = fetchgit {
1280 url = "git://github.com/lambdalisue/vim-gista";
1281 rev = "ffe85c0438cf5ad76b07ddb6524de3803c2bfdba";
1282 sha256 = "9f44d07a4f36fb4559c99a655501b3752e180458de9d76d1cb293abd0f990fb4";
1283 };
1284 dependencies = [];
1285
1286 };
1287
1288 vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1289 name = "vim-gitgutter-2015-07-28";
1290 src = fetchgit {
1291 url = "git://github.com/airblade/vim-gitgutter";
1292 rev = "fe10e6474d70c382edcda84dc6bcd6fcd575a6c5";
1293 sha256 = "0266775153760c86e51a83106813936c661717a1c72d4103215739aff9ad1b76";
1294 };
1295 dependencies = [];
1296
1297 };
1298
1299 vim-iced-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1300 name = "vim-iced-coffee-script-2013-12-27";
1301 src = fetchgit {
1302 url = "git://github.com/noc7c9/vim-iced-coffee-script";
1303 rev = "e42e0775fa4b1f8840c55cd36ac3d1cedbc1dea2";
1304 sha256 = "c7859591975a51a1736f99a433d7ca3e7638b417340a0472a63995e16d8ece93";
1305 };
1306 dependencies = [];
1307
1308 };
1309
1310 vim-latex-live-preview = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1311 name = "vim-latex-live-preview-2015-05-11";
1312 src = fetchgit {
1313 url = "git://github.com/xuhdev/vim-latex-live-preview";
1314 rev = "7695dd4ebddb735bec632d468e2202d070029cb8";
1315 sha256 = "3551e2a84a98b07f5edce6e35bad5cd2a78da1ef60dd94202c623e238b05bfc8";
1316 };
1317 dependencies = [];
1318
1319 };
1320
1321 vim-multiple-cursors = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1322 name = "vim-multiple-cursors-2015-05-29";
1323 src = fetchgit {
1324 url = "git://github.com/terryma/vim-multiple-cursors";
1325 rev = "3199d34f57e1e20d2dd807b31a5a72d7f7d42e96";
1326 sha256 = "26b43c921b416cc19482d03435516d42a209ab104bac9979b073d0db61e95186";
1327 };
1328 dependencies = [];
1329
1330 };
1331
1332 vim-signature = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1333 name = "vim-signature-2015-07-08";
1334 src = fetchgit {
1335 url = "git://github.com/kshenoy/vim-signature";
1336 rev = "0a31fb0c4c62705b4b894e150330857170080b96";
1337 sha256 = "945cc02d15bf7e71a87d6b1ec0ae24e6f145bff0f76586f6d8f6bba38a303a4a";
1338 };
1339 dependencies = [];
1340
1341 };
1342
1343 vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1344 name = "vim-snippets-2015-07-29";
1345 src = fetchgit {
1346 url = "git://github.com/honza/vim-snippets";
1347 rev = "814896e4d29f2b796d076935d7d079c64c351f4f";
1348 sha256 = "173d2f52c0715dd78692b5f1d3368920ed976a05a87887b056526abfd530ffa3";
1349 };
1350 dependencies = [];
1351
1352 };
1353
1354 vim2hs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1355 name = "vim2hs-2014-04-16";
1356 src = fetchgit {
1357 url = "git://github.com/dag/vim2hs";
1358 rev = "f2afd55704bfe0a2d66e6b270d247e9b8a7b1664";
1359 sha256 = "485fc58595bb4e50f2239bec5a4cbb0d8f5662aa3f744e42c110cd1d66b7e5b0";
1360 };
1361 dependencies = [];
1362
1363 };
1364
1365 vimwiki = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1366 name = "vimwiki-2014-02-21";
1367 src = fetchgit {
1368 url = "git://github.com/vimwiki/vimwiki";
1369 rev = "2c03d82a0e4662adf1e347487d73a9bf4bf6fdac";
1370 sha256 = "8f94fe1204ae3770b114370382f9c616f971eb9b940d8d08ca96ac83405a0cdf";
1371 };
1372 dependencies = [];
1373
1374 };
1375
1376 vundle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
1377 name = "vundle-2015-03-21";
1378 src = fetchgit {
1379 url = "git://github.com/gmarik/vundle";
1380 rev = "cfd3b2d388a8c2e9903d7a9d80a65539aabfe933";
1381 sha256 = "7ce9bb0a59c8f86cedd9b3867b834bcd160f2224c187189997ef76c2bfd99d50";
1382 };
1383 dependencies = [];
1384
1385 };
1386}