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