2014-11-08 21:34:13 +03:00
|
|
|
# TODO check that no license information gets lost
|
2016-01-08 23:56:44 +03:00
|
|
|
{ fetchurl, bash, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip
|
|
|
|
, which, fetchgit, fetchFromGitHub, fetchhg, fetchzip, llvmPackages, zip
|
|
|
|
, vim_configurable, vimPlugins, xkb_switch, git
|
2016-03-04 16:10:17 +03:00
|
|
|
, Cocoa ? null
|
2014-12-04 17:32:29 +03:00
|
|
|
}:
|
2013-05-27 20:29:35 +04:00
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
let
|
2014-11-08 21:34:13 +03:00
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
inherit (vimUtils.override {inherit vim;}) rtpPath addRtp buildVimPlugin
|
|
|
|
buildVimPluginFrom2Nix vimHelpTags;
|
2014-11-08 21:34:13 +03:00
|
|
|
in
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
# TL;DR
|
|
|
|
# Add your plugin to ./vim-plugin-names
|
|
|
|
# Generate via `vim-plugin-names-to-nix`
|
2016-01-10 13:19:06 +03:00
|
|
|
# If plugin is complicated then make changes to ./vim2nix/additional-nix-code
|
2015-06-01 13:14:47 +03:00
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
# This attrs contains two sections:
|
|
|
|
# The first contains plugins added manually, the second contains plugins
|
|
|
|
# generated by call nix#ExportPluginsForNix.
|
|
|
|
# Documentation & usage see vim-utils.nix.
|
|
|
|
# attribute names should be the same as used by vim-pi to make dependency
|
|
|
|
# resolution work
|
2014-11-08 21:34:13 +03:00
|
|
|
rec {
|
2015-06-01 13:14:47 +03:00
|
|
|
# This is not a plugin, it provides bin/vim-open-buffer-with-plugins-derivations
|
|
|
|
# which recreates this the following derivations based on ./vim-plugin-names
|
|
|
|
pluginnames2nix = vimUtils.pluginnames2Nix {
|
|
|
|
name = "vim-plugin-names-to-nix";
|
2016-01-10 13:19:06 +03:00
|
|
|
namefiles = [./vim-plugin-names];
|
|
|
|
};
|
2014-12-04 17:32:29 +03:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
# Section I
|
2016-01-10 13:19:06 +03:00
|
|
|
vim-addon-vim2nix = vim2nix;
|
|
|
|
|
|
|
|
vim2nix = buildVimPluginFrom2Nix { # use it to update plugins
|
|
|
|
name = "vim2nix";
|
|
|
|
src = ./vim2nix;
|
|
|
|
dependencies = ["vim-addon-manager"];
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
# Section II
|
|
|
|
# Update with vimUtils.vimPlugins.pluginnames2Nix command
|
|
|
|
|
|
|
|
# aliasess
|
2015-06-16 01:43:54 +03:00
|
|
|
"sourcemap.vim" = sourcemap;
|
|
|
|
Colour_Sampler_Pack = Colour-Sampler-Pack;
|
|
|
|
YouCompleteMe = youcompleteme;
|
2015-06-01 13:14:47 +03:00
|
|
|
airline = vim-airline;
|
|
|
|
alternative = a-vim; # backwards compat, added 2014-10-21
|
2015-06-16 01:43:54 +03:00
|
|
|
calendar = calendar-vim;
|
2015-06-01 13:14:47 +03:00
|
|
|
coffee-script = vim-coffee-script;
|
|
|
|
coffeeScript = coffee-script; # backwards compat, added 2014-10-18
|
|
|
|
colors-solarized = Solarized;
|
|
|
|
colorsamplerpack = Colour_Sampler_Pack;
|
|
|
|
command_T = command-t; # backwards compat, added 2014-10-18
|
2015-09-01 05:10:53 +03:00
|
|
|
css_color_5056 = vim-css-color;
|
2015-10-03 11:38:55 +03:00
|
|
|
ctrlp = ctrlp-vim;
|
2015-06-01 13:14:47 +03:00
|
|
|
easy-align = vim-easy-align;
|
|
|
|
easymotion = vim-easymotion;
|
|
|
|
eighties = vim-eighties;
|
|
|
|
ghc-mod-vim = ghcmod;
|
|
|
|
gist-vim = Gist;
|
|
|
|
gitgutter = vim-gitgutter;
|
2015-10-02 12:36:09 +03:00
|
|
|
gundo = gundo-vim;
|
2015-10-03 11:38:55 +03:00
|
|
|
Gundo = gundo-vim; # backwards compat, added 2015-10-03
|
2015-06-01 13:14:47 +03:00
|
|
|
haskellConceal = haskellconceal; # backwards compat, added 2014-10-18
|
|
|
|
haskellconceal = vim-haskellconceal;
|
|
|
|
hier = vim-hier;
|
2015-06-16 01:43:54 +03:00
|
|
|
hoogle = Hoogle;
|
2015-06-01 13:14:47 +03:00
|
|
|
ipython = vim-ipython;
|
|
|
|
latex-live-preview = vim-latex-live-preview;
|
2015-07-20 22:58:56 +03:00
|
|
|
multiple-cursors = vim-multiple-cursors;
|
2015-06-01 13:14:47 +03:00
|
|
|
necoGhc = neco-ghc; # backwards compat, added 2014-10-18
|
2015-06-16 01:43:54 +03:00
|
|
|
neocomplete = neocomplete-vim;
|
|
|
|
neosnippet = neosnippet-vim;
|
2015-06-01 13:14:47 +03:00
|
|
|
nerdcommenter = The_NERD_Commenter;
|
|
|
|
nerdtree = The_NERD_tree;
|
|
|
|
quickrun = vim-quickrun;
|
|
|
|
signature = vim-signature;
|
|
|
|
stylish-haskell = vim-stylish-haskell;
|
|
|
|
stylishHaskell = stylish-haskell; # backwards compat, added 2014-10-18
|
|
|
|
supertab = Supertab;
|
|
|
|
syntastic = Syntastic;
|
|
|
|
tabular = Tabular;
|
|
|
|
tagbar = Tagbar;
|
2015-06-16 01:43:54 +03:00
|
|
|
thumbnail = thumbnail-vim;
|
2015-06-01 13:14:47 +03:00
|
|
|
tmux-navigator = vim-tmux-navigator;
|
|
|
|
tmuxNavigator = tmux-navigator; # backwards compat, added 2014-10-18
|
2015-06-16 01:43:54 +03:00
|
|
|
tslime = tslime-vim;
|
|
|
|
vimproc = vimproc-vim;
|
|
|
|
vimshell = vimshell-vim;
|
2015-06-01 13:14:47 +03:00
|
|
|
watchdogs = vim-watchdogs;
|
|
|
|
webapi-vim = WebAPI;
|
2015-07-08 09:44:30 +03:00
|
|
|
wombat256 = wombat256-vim; # backwards compat, added 2015-7-8
|
2015-06-01 13:14:47 +03:00
|
|
|
yankring = YankRing;
|
|
|
|
|
2015-10-03 11:38:55 +03:00
|
|
|
CSApprox = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "CSApprox-2013-07-26";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/godlygeek/csapprox";
|
|
|
|
rev = "7981dac51d8b6776985aa08cb7b5ee98ea7f2ddd";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "17rqhf3gz2al597sy9smk10a7p1bh648659jkl867ay7g7mlgjwc";
|
2015-10-03 11:38:55 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-08-26 04:00:19 +03:00
|
|
|
CheckAttach = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "CheckAttach-2015-06-22";
|
2015-07-03 11:08:22 +03:00
|
|
|
src = fetchgit {
|
2015-08-26 04:00:19 +03:00
|
|
|
url = "git://github.com/chrisbra/CheckAttach";
|
|
|
|
rev = "a1d86be7e69b25b41ce1a7fe2d2844330f783b68";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "07rcp8phc0gazls0cassl64gvlxkp0hcc0c32adjw4jsdy11r4mq";
|
2015-07-03 11:08:22 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
Gist = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-12-11 21:31:40 +03:00
|
|
|
name = "Gist-2015-10-25";
|
2015-06-01 13:14:47 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/mattn/gist-vim";
|
2015-12-11 21:31:40 +03:00
|
|
|
rev = "88c331e2e07765090112a396e5e119b39b5aa754";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1igryyi85bk1pk0jmx4l01skgmjyg1kg1p3ylv0j22d5nibf79qd";
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
|
|
|
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
Hoogle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-01-04 14:45:05 +03:00
|
|
|
name = "Hoogle-2015-12-24";
|
2014-10-21 16:24:30 +04:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/Twinside/vim-hoogle";
|
2016-01-04 14:45:05 +03:00
|
|
|
rev = "a5db36f048ac16ab9774fc86f36cd4ae9a444932";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1855n6dsimbc0brfbmmkx1gszhmgfghm1h1mpi95mq9qzbwkgjri";
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
2014-10-21 16:24:30 +04:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
};
|
2015-05-11 22:46:41 +03:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
Solarized = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "Solarized-2011-05-09";
|
2015-03-26 21:16:21 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/altercation/vim-colors-solarized";
|
|
|
|
rev = "528a59f26d12278698bb946f8fb82a63711eec21";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "05d3lmd1shyagvr3jygqghxd3k8a4vp32723fvxdm57fdrlyzcm1";
|
2013-07-14 05:24:45 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
|
|
|
|
2013-06-21 09:11:07 +04:00
|
|
|
};
|
2014-10-21 16:24:30 +04:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
Supertab = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-01-22 23:02:39 +03:00
|
|
|
name = "Supertab-2016-01-03";
|
2014-10-21 16:24:30 +04:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/ervandew/supertab";
|
2016-01-22 23:02:39 +03:00
|
|
|
rev = "66511772a430a5eaad7f7d03dbb02e8f33c4a641";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "065l7vin3gdk4lzcavwl7k850kz93lqhazxn80p2d8rwkx732jgx";
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
2015-05-11 22:46:41 +03:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
};
|
2015-05-11 22:46:41 +03:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
Syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "Syntastic-2016-04-14";
|
2015-03-26 21:16:21 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/scrooloose/syntastic";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "e879f729d4ca1810debe83c5e6d3986c9dfa586c";
|
|
|
|
sha256 = "0h5ini13j7qcambkcl2i7v4rrrw06wh64icywm01s0l24kr00d4q";
|
2013-08-22 04:43:59 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
|
|
|
|
2013-08-22 04:43:59 +04:00
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
Tabular = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "Tabular-2013-05-16";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/godlygeek/tabular";
|
|
|
|
rev = "60f25648814f0695eeb6c1040d97adca93c4e0bb";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "03zbpyvrw82cp6d1xm8pgi94cxwrlg8lgbiz471z51qmcann1j18";
|
2015-06-01 13:14:47 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
2015-03-26 21:16:21 +03:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
};
|
2014-10-20 10:55:25 +04:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
Tagbar = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-06-27 02:05:15 +03:00
|
|
|
name = "Tagbar-2015-06-19";
|
2013-12-16 05:21:23 +04:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/majutsushi/tagbar";
|
2015-06-27 02:05:15 +03:00
|
|
|
rev = "7b36c46d17d57db34fdb0adac9ba6382d0bb5e66";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1iqk7y2ckkmzq22jmiyrrxhnzcy8r3kdizwf65l1qbbpfbkp6rrl";
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
|
|
|
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
The_NERD_Commenter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-12-11 21:31:40 +03:00
|
|
|
name = "The_NERD_Commenter-2015-10-29";
|
2014-10-21 16:24:30 +04:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/scrooloose/nerdcommenter";
|
2015-12-11 21:31:40 +03:00
|
|
|
rev = "1f4bfd59920c101a30a74a07b824608a6e65f3fe";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "0gdqmwsyk5ly96d0dp4j7pa0kp6qcl04nzxckh8kxjsbqnphmwaf";
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
|
|
|
|
2014-10-20 10:55:25 +04:00
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
The_NERD_tree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-12-11 21:31:40 +03:00
|
|
|
name = "The_NERD_tree-2015-12-02";
|
2014-10-20 10:55:25 +04:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/scrooloose/nerdtree";
|
2015-12-11 21:31:40 +03:00
|
|
|
rev = "4ebbb533c3faf2c480211db2b547972bb3b60f2b";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1v883q3nbv8f5a7gkdsa1kvghf2k4s2pj4ql2m2i1ryn8xrslc7p";
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
2014-10-21 16:24:30 +04:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
};
|
2014-11-20 23:49:17 +03:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
UltiSnips = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "UltiSnips-2016-04-14";
|
2014-10-20 10:55:25 +04:00
|
|
|
src = fetchgit {
|
2015-12-11 21:31:40 +03:00
|
|
|
url = "git://github.com/SirVer/ultisnips";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "4c71935cbaf2264c06bf6f9c7384fa2d7cbe83c8";
|
|
|
|
sha256 = "0x0n3sc3qzjwn8q22s9kj9v17vl69i95bk7ibz4x76h22hi18xw6";
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
|
|
|
|
2014-10-20 10:55:25 +04:00
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
VimOutliner = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-10-02 12:36:09 +03:00
|
|
|
name = "VimOutliner-2015-10-01";
|
2014-10-20 10:55:25 +04:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/vimoutliner/vimoutliner";
|
2015-10-02 12:36:09 +03:00
|
|
|
rev = "cb41cfd6d636e1243e7e9c46b35fc5cb50588069";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "03w5y57329lnv2rxz0wvnfd1qv6d36zsqgwwvm2j8fvryhs7xbvg";
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
|
|
|
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
WebAPI = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "WebAPI-2016-04-15";
|
2014-10-21 16:24:30 +04:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/mattn/webapi-vim";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "07b727d88314bbd47ae0c92650c25e3c5e671364";
|
|
|
|
sha256 = "1676sg82x7df4andz3s4602gficq9rgg9h98y1g90pphzwm7scbw";
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
|
|
|
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
YankRing = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "YankRing";
|
|
|
|
src = fetchurl {
|
2015-07-29 21:58:17 +03:00
|
|
|
url = "http://www.vim.org/scripts/download_script.php?src_id=23487";
|
|
|
|
name = "yankring_190.zip";
|
|
|
|
sha256 = "0nnxpsfjp2p9jvs3y5ynnd5s56snz9927zdp9bgmay2jgxfmp0si";
|
2015-03-26 21:16:21 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
buildInputs = [ unzip ];
|
|
|
|
dependencies = [];
|
2014-10-21 16:24:30 +04:00
|
|
|
meta = {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "http://www.vim.org/scripts/script.php?script_id=1234";
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
|
2014-10-20 10:55:25 +04:00
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
commentary = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "commentary-2016-03-10";
|
2014-10-21 16:24:30 +04:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/tpope/vim-commentary";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "73e0d9a9d1f51b6cc9dc965f62669194ae851cb1";
|
|
|
|
sha256 = "1cyghdlhyyzl366l8r7a2m00pfnga98n6s6a1z00y4rmnnxbk1kk";
|
2015-08-27 19:08:15 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
ctrlp-py-matcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-01-22 23:02:39 +03:00
|
|
|
name = "ctrlp-py-matcher-2016-01-13";
|
2015-08-27 19:08:15 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/FelikZ/ctrlp-py-matcher";
|
2016-01-22 23:02:39 +03:00
|
|
|
rev = "8a803267a741cff3d6147650745f83c8f2125578";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "0d5a7cqjh58l8qgj92s06f2ia83w51g4cic61qxd6sykv9xqiz17";
|
2015-08-27 19:08:15 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
ctrlp-z = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-12-11 21:31:40 +03:00
|
|
|
name = "ctrlp-z-2015-10-17";
|
2015-08-27 19:08:15 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/amiorin/ctrlp-z";
|
2015-12-11 21:31:40 +03:00
|
|
|
rev = "d1a69ec623ce24b9a30fc8fe3cd468c322b03026";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "16nsj1g8lqmyizlb5ijwhf4dsmh0xv1kwqq6jxvhaf55vfga82yl";
|
2015-08-27 19:08:15 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
extradite = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-10-02 12:36:09 +03:00
|
|
|
name = "extradite-2015-09-22";
|
2014-10-21 16:24:30 +04:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/int3/vim-extradite";
|
2015-10-02 12:36:09 +03:00
|
|
|
rev = "52326f6d333cdbb9e9c6d6772af87f4f39c00526";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1wfdw6g16nqwdalq7m7ncnxhzyjcl5c8nsbsnsnr5bgsfgp49xwi";
|
2013-10-29 01:14:12 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
|
|
|
|
2013-10-29 01:14:12 +04:00
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "fugitive-2016-04-14";
|
2014-10-20 10:55:25 +04:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/tpope/vim-fugitive";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "bdd216827ae53cdf70d933bb30762da9bf42cad4";
|
|
|
|
sha256 = "0v72mbhircfm16z7l8hcga4zg6gin9yy468a02biccyk4qbclchx";
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
|
|
|
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
ghcmod = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-02-25 12:17:06 +03:00
|
|
|
name = "ghcmod-2016-01-25";
|
2014-11-19 01:05:30 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/eagletmt/ghcmod-vim";
|
2016-02-25 12:17:06 +03:00
|
|
|
rev = "815616e8b7d64677d6092e95bc6a3e83d2e035d4";
|
|
|
|
sha256 = "1s0wxccmxi0w7ywhwyxggv5n8lcjgh68rhbpp2zrv5n5sg0das73";
|
2014-11-19 01:05:30 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
2014-11-19 01:05:30 +03:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
};
|
2015-05-11 22:46:41 +03:00
|
|
|
|
2016-03-09 20:24:06 +03:00
|
|
|
vim-autoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-autoformat-2016-04-06";
|
2015-10-03 11:44:52 +03:00
|
|
|
src = fetchgit {
|
2016-03-09 20:24:06 +03:00
|
|
|
url = "git://github.com/Chiel92/vim-autoformat";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "713e7c258052d94dfd752647ea03cf423cace8ff";
|
|
|
|
sha256 = "1nwms79m28wp5k53x2x2kzaq16lkzl25z96fqnqin70xh7m7nkbm";
|
2015-10-03 11:44:52 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-03-09 20:24:06 +03:00
|
|
|
vim-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "vim-nix-2015-12-10";
|
2016-02-25 12:22:44 +03:00
|
|
|
src = fetchgit {
|
2016-03-09 20:24:06 +03:00
|
|
|
url = "git://github.com/LnL7/vim-nix";
|
|
|
|
rev = "f0b7bd4bce5ed0f12fb4d26115c84fb3edcd1e12";
|
|
|
|
sha256 = "0r3nffv2yv6vhzhkqx97diqwbcfqvc4j20nrcbmqhaf1bd6xvnsj";
|
2016-02-25 12:22:44 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-04-16 01:32:47 +03:00
|
|
|
Spacegray-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "Spacegray-vim-2015-04-04";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/ajh17/Spacegray.vim";
|
|
|
|
rev = "1c10d0da045609910e8fb03b33c043bbcff35d9e";
|
|
|
|
sha256 = "1ddlnjgizma1kavr06q6x1kasv9219by540b6n22z94waf3qkvdw";
|
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-09-17 00:40:31 +03:00
|
|
|
vim-css-color = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-css-color-2016-04-14";
|
2015-09-17 00:40:31 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/ap/vim-css-color";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "4421dbac36bedcdd4fc345fd95785cfed518847c";
|
|
|
|
sha256 = "11f356rciyxxvdlcijiq5rz2w8vmbcczq32r1fgspaig4pfa933p";
|
2015-09-17 00:40:31 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-10-02 11:26:46 +03:00
|
|
|
neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "neomake-2016-03-09";
|
2015-10-02 11:26:46 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/benekastah/neomake";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "efed015f59001b2cf28e95bff24e87ff5764a62b";
|
|
|
|
sha256 = "129jhzmwk2y7fnkzh4l54dx7vavc4bzd59bm5r9d34k9d0yzz1jm";
|
2015-10-02 11:26:46 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim-hdevtools = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "vim-hdevtools-2012-12-29";
|
2014-10-21 16:24:30 +04:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/bitc/vim-hdevtools";
|
|
|
|
rev = "474947c52ff9c93dd36f3c49de90bd9a78f0baa1";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1wwjb9m2l9q75d408jzq9bwv5i376bfgs6vc3ihwwlawcrmhjpxz";
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
2014-10-21 16:24:30 +04:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
};
|
2015-05-11 22:46:41 +03:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim-tmux-navigator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-12-11 21:31:40 +03:00
|
|
|
name = "vim-tmux-navigator-2015-12-05";
|
2014-11-23 22:42:22 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/christoomey/vim-tmux-navigator";
|
2015-12-11 21:31:40 +03:00
|
|
|
rev = "1298b71c420f1d0abceba3f35cc710131f84d73b";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1dafgclrq0243lz2v5dq4zc47yqp27kyc14p1l1nzka12kz65sdx";
|
2014-11-23 22:42:22 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
|
|
|
|
2014-11-23 22:42:22 +03:00
|
|
|
};
|
|
|
|
|
2015-10-03 11:38:55 +03:00
|
|
|
ctrlp-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "ctrlp-vim-2016-04-12";
|
2015-10-03 11:38:55 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/ctrlpvim/ctrlp.vim";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "d00960b4f34bc45b5f88d9363a768bcce5ac3933";
|
|
|
|
sha256 = "12yhvhdzaijgy8s6br2s1ng7jh01h2nblb6yqfrmcapjin34iwlk";
|
2015-10-03 11:38:55 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-09-16 03:38:20 +03:00
|
|
|
vim-jade = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-02-25 12:17:06 +03:00
|
|
|
name = "vim-jade-2016-02-11";
|
2015-09-16 03:38:20 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/digitaltoad/vim-jade";
|
2016-02-25 12:17:06 +03:00
|
|
|
rev = "0a7ec2edaa3f7fbe353f8fd5bf06d3c043d70c81";
|
|
|
|
sha256 = "0qlwbywnx6sl2xacdialpmg1d2wmjkdsdklz97k8086glkairs10";
|
2015-09-16 03:38:20 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
neco-ghc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "neco-ghc-2016-04-15";
|
2014-10-21 16:24:30 +04:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/eagletmt/neco-ghc";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "3a413c1c059e0bc47f11d863f52af06cd858791c";
|
|
|
|
sha256 = "0bx8fp95ybsbrn5jxnf2xaq55igi2hckg33jg42qw67gc6090bcr";
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
|
|
|
|
2013-06-27 05:21:11 +04:00
|
|
|
};
|
2013-09-16 15:34:49 +04:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
YUNOcommit-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "YUNOcommit-vim-2014-11-26";
|
2014-10-20 10:55:25 +04:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/esneider/YUNOcommit.vim";
|
|
|
|
rev = "981082055a73ef076d7e27477874d2303153a448";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "0mjc7fn405vcx1n7vadl98p5wgm6jxrlbdbkqgjq8f1m1ir81zab";
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
2014-06-29 02:18:42 +04:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
};
|
2014-10-21 16:24:30 +04:00
|
|
|
|
2015-08-30 17:11:21 +03:00
|
|
|
vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-go-2016-04-15";
|
2015-08-30 17:11:21 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/fatih/vim-go";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "b3fddb60fdab980d1fc339fbcbc879abd6cbf524";
|
|
|
|
sha256 = "1ggjisbc187kyzdizqffkicjdkz67mhgpxmqjcvzaq2wc2w44aja";
|
2015-12-11 21:31:40 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
vim-colorschemes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-colorschemes-2016-03-18";
|
2015-12-11 21:31:40 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/flazz/vim-colorschemes";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "189f5182bb70fd35d0f56fee451c3f22a2a80135";
|
|
|
|
sha256 = "0wv12f6i07md9c53ygbmyh14zghsr7w9ylkbrfpdjm9z32b0fpwf";
|
2015-08-30 17:11:21 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-03-31 12:17:52 +03:00
|
|
|
vim-jsonnet = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "vim-jsonnet-2016-01-21";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/google/vim-jsonnet";
|
|
|
|
rev = "5d59d0ba6af2bca4484909e02d72c96fbdd5b220";
|
2016-04-16 01:32:47 +03:00
|
|
|
sha256 = "0y6fms0anshw4p6zmyhlzcinxsibp6829xh4y6vxqsz8vjp0hxgb";
|
2016-03-31 12:17:52 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
idris-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-02-25 12:17:06 +03:00
|
|
|
name = "idris-vim-2016-01-29";
|
2014-11-20 23:49:17 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/idris-hackers/idris-vim";
|
2016-02-25 12:17:06 +03:00
|
|
|
rev = "e1711749f5078f5a9fa53cd15a37627ea9d239f2";
|
|
|
|
sha256 = "0mbywk1mwbx3hjzrv7ypp5m800xjj08hxlfmd0piljg41xwkgk5q";
|
2014-11-20 23:49:17 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
|
|
|
|
2014-11-20 23:49:17 +03:00
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
calendar-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "calendar-vim-2016-04-10";
|
2015-06-01 13:14:47 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/itchyny/calendar.vim";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "d6bba38a73a6e73bed866664df21f422f97cc3fe";
|
|
|
|
sha256 = "05gph8mf1n3d2b7p7qlvwqk618h1mnf9pg04y1p66anyy4rlsnyy";
|
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
lightline-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "lightline-vim-2016-04-15";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/itchyny/lightline.vim";
|
|
|
|
rev = "ec7d944f06821f96461fc0ba81aebf1dc650cded";
|
|
|
|
sha256 = "0yvjsvkql999cldlq7xhy873mk42awh3xsh9ihfs5rbaj1v27z4p";
|
2014-06-29 02:18:42 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
|
|
|
|
2014-06-29 02:18:42 +04:00
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
thumbnail-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "thumbnail-vim-2016-03-17";
|
2014-10-21 16:24:30 +04:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/itchyny/thumbnail.vim";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "4afdc473b47d162610965fa5ed15fa855cca65d4";
|
|
|
|
sha256 = "1fcyjw1dvkpijlcm2lbg81am6h188p1bmi3md6wvk48vdj2h56r5";
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
|
|
|
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim-ipython = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-06-27 02:05:15 +03:00
|
|
|
name = "vim-ipython-2015-06-23";
|
2014-08-13 21:58:25 +04:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/ivanov/vim-ipython";
|
2015-06-27 02:05:15 +03:00
|
|
|
rev = "42499f094b805b90b683afa5009cee99abd0bb75";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "0b9g4ny32772x78k0nnarnm6arm3bj2nxj83sxaqaascvvnw6nbz";
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
2014-10-21 16:24:30 +04:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
};
|
2014-08-13 21:58:25 +04:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim-hier = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "vim-hier-2011-08-27";
|
2014-08-13 21:58:25 +04:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/jceb/vim-hier";
|
|
|
|
rev = "0b8c365263551a67404ebd7e528c55e17c1d3de7";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "118pd9sx1bl9vfr89xrf536hfx4l162a43a1qpwpkqxzb9a3ca7n";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
|
|
|
buildInputs = [ vim ];
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
|
2016-04-16 01:32:47 +03:00
|
|
|
vim-orgmode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "vim-orgmode-2016-04-11";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/jceb/vim-orgmode";
|
|
|
|
rev = "0bb1eff513880b90dd2c3ecde3726c21863cb4d9";
|
|
|
|
sha256 = "07gw5d5gipmcsa9cqii2n2cqghdny22m37z2dllm8n82j9yk1qzg";
|
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim-buffergator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-buffergator-2016-04-07";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/jeetsukumaran/vim-buffergator";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "611966d1ced784d5659c5dc07e984fabd95d917f";
|
|
|
|
sha256 = "1fypzqwl89gk024742d59d0ax9wl2xv40bpfmby0cnh1f5hqias3";
|
2015-03-26 21:16:21 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
2014-12-04 17:32:29 +03:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
tslime-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-08-26 04:00:19 +03:00
|
|
|
name = "tslime-vim-2015-08-14";
|
2015-03-26 21:16:21 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/jgdavey/tslime.vim";
|
2015-08-26 04:00:19 +03:00
|
|
|
rev = "4a8091956e331d7b1d4187a2883b720dfec7e9dd";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "09csafrigp1ak566zxvhj71cdr6b6i3fplgncb288r051kw16cg6";
|
2015-03-26 21:16:21 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
2015-02-16 04:20:10 +03:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
};
|
2015-02-16 04:20:10 +03:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim-nerdtree-tabs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "vim-nerdtree-tabs-2014-09-25";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/jistr/vim-nerdtree-tabs";
|
|
|
|
rev = "0decec122e9bb3e9328b01fa20a9650e79cc6ca7";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1hmxwwxfrk6c6g2mivazpl72s5vw1w5dvl10ivpn52lfw4xgqjxc";
|
2015-02-16 04:20:10 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
2015-02-16 04:20:10 +03:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-03-31 12:17:52 +03:00
|
|
|
zenburn = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "zenburn-2015-09-18";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/jnurmine/zenburn";
|
|
|
|
rev = "f7847fb1531b91e2b4bb4aed5db3146f07765179";
|
2016-04-16 01:32:47 +03:00
|
|
|
sha256 = "1las12jznf25dkxrjk3s9l70c6wnpjisngmvi83bhw5gvx4c7mq5";
|
2016-03-31 12:17:52 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-12-11 21:31:40 +03:00
|
|
|
vim-colorstepper = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-02-25 12:17:06 +03:00
|
|
|
name = "vim-colorstepper-2016-01-28";
|
2015-12-11 21:31:40 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/jonbri/vim-colorstepper";
|
2016-02-25 12:17:06 +03:00
|
|
|
rev = "f23ba0d995d41508a2dc9471cf31d3d01a4b5f05";
|
|
|
|
sha256 = "05ykxn0gmh8liz0zv5hb8df1ajggxp88izq3825m0yb3ma3k1jqs";
|
2015-12-11 21:31:40 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "vim-xdebug-2012-08-15";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/joonty/vim-xdebug";
|
2014-12-04 17:32:29 +03:00
|
|
|
rev = "a4980fa65f7f159780593ee37c178281691ba2c4";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1qh18r0sm4gh95sjbi2hnflvxdl4gk00jyy3n7z4i1gnx9ihxjqw";
|
2015-02-04 00:17:08 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
|
|
|
postInstall = false;
|
2015-02-04 00:17:08 +03:00
|
|
|
};
|
|
|
|
|
2015-10-02 11:26:46 +03:00
|
|
|
limelight-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "limelight-vim-2016-04-12";
|
2015-10-02 11:26:46 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/junegunn/limelight.vim";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "be8c754eb1cc947521831d0d2e2fb9da5420d57a";
|
|
|
|
sha256 = "1nhk4rmpfbp1q9rbihz014v7mk4ai4zpk88k3dmj6ymvmmxj2ayh";
|
2015-10-02 11:26:46 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
vim-peekaboo = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-03-09 20:24:06 +03:00
|
|
|
name = "vim-peekaboo-2016-02-29";
|
2015-10-02 11:26:46 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/junegunn/vim-peekaboo";
|
2016-03-09 20:24:06 +03:00
|
|
|
rev = "111c4bacbe5216022d56489c366bf4ce985506e9";
|
|
|
|
sha256 = "0pblcxb467n4nxkvmb8sl8765nmz17h74hs5dy5dnmaxiy55v0d9";
|
2015-10-02 11:26:46 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim-eighties = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-12-11 21:31:40 +03:00
|
|
|
name = "vim-eighties-2015-11-02";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/justincampbell/vim-eighties";
|
2015-12-11 21:31:40 +03:00
|
|
|
rev = "62a9719df45fddd0456bf47420fc4768f9c8f5a5";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "108yv5kwcfx7wjn3pqak86vsmcng0ha5s452pl75q3k580f6sf5k";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
2014-12-04 17:32:29 +03:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
};
|
2014-12-04 17:32:29 +03:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
latex-box = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-06-16 01:43:54 +03:00
|
|
|
name = "latex-box-2015-06-01";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/latex-box-team/latex-box";
|
2015-06-16 01:43:54 +03:00
|
|
|
rev = "3c2901e12cb78bfb2be58ba4c62a488612550fe1";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "10af319r8y94dnqv8js5fgdr2n482hgkl641hkd3i563159c9wla";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
};
|
2014-12-04 17:32:29 +03:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim-jinja = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "vim-jinja-2014-06-11";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/lepture/vim-jinja";
|
|
|
|
rev = "4412484b410b15caecd71f2e52758b2a90ea124d";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1z5ya953nn7233jjjs0ay61x5hfrfddx9xz31grq52cfd0ipy335";
|
2015-06-01 13:14:47 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
2014-12-04 17:32:29 +03:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-10-02 11:26:46 +03:00
|
|
|
vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vimtex-2016-04-14";
|
2015-10-02 11:26:46 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/lervag/vimtex";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "270eb339ea67ac08622b5e386490bf09be6e0190";
|
|
|
|
sha256 = "1bdznp73q989ha0ws8kzq92dcbmg2nn8b4nkx4hzcin56n8bx4x4";
|
2015-10-02 11:26:46 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim-easymotion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-easymotion-2016-03-27";
|
2015-06-01 13:14:47 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/lokaltog/vim-easymotion";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "a6b3c10b417d90d6751352b53826f94062ff466d";
|
|
|
|
sha256 = "0f9jdc9czhw14wr0hs1acdf779lx7v5a5hjbf19rw80bb6sp7f3b";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-xkbswitch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-02-25 12:17:06 +03:00
|
|
|
name = "vim-xkbswitch-2016-01-31";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/lyokha/vim-xkbswitch";
|
2016-02-25 12:17:06 +03:00
|
|
|
rev = "89fa3fc16251f2e97281d29ade3ee022ba285003";
|
|
|
|
sha256 = "16wahaz9d6jyqlvmsn764xqircrwaap3pn4fbgmly7vfmdvq4p8b";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-16 01:43:54 +03:00
|
|
|
dependencies = [];
|
2015-06-07 15:59:38 +03:00
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace plugin/xkbswitch.vim \
|
|
|
|
--replace /usr/local/lib/libxkbswitch.so ${xkb_switch}/lib/libxkbswitch.so
|
|
|
|
'';
|
2015-06-01 13:14:47 +03:00
|
|
|
buildInputs = [ xkb_switch ];
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
2015-10-03 12:22:25 +03:00
|
|
|
vim-startify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-startify-2016-03-24";
|
2015-10-03 12:22:25 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/mhinz/vim-startify";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "e74cc71b1b7b33f6df6e8b48ff4b0f587f6bfed9";
|
|
|
|
sha256 = "1dimkqzmcw8w10wf75b10bvmskyf9ahxxiyvac4kbr7bipmzz1b3";
|
2015-10-03 12:22:25 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-09-21 23:01:11 +03:00
|
|
|
lushtags = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "lushtags-2016-03-24";
|
2015-09-21 23:01:11 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/mkasa/lushtags";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "f54dd9b2819a5573f110099b232149c5202c1eb4";
|
|
|
|
sha256 = "15v2f58i1z3421rgxh1i5rbd6cgc4s3vljv1bdjx19b2x9fq237f";
|
2015-09-21 23:01:11 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim-stylish-haskell = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "vim-stylish-haskell-2015-05-10";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/nbouscal/vim-stylish-haskell";
|
|
|
|
rev = "c664376ba814de3f87cb7641f90b2c6a9dd53671";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1xm5ark2mwphznv3xsyzgcldnr52i5jzk1pfqdh0080j07aama8j";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
shabadou-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "shabadou-vim-2014-07-27";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/osyo-manga/shabadou.vim";
|
|
|
|
rev = "c5af30bb0c028d53cfd89e00cab636c844034a9a";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1rjdbjsyhs514cqysrr4cr3qva6v1nixjwdmg3j1jlkjbs5glbir";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-watchdogs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-01-22 23:02:39 +03:00
|
|
|
name = "vim-watchdogs-2016-01-13";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/osyo-manga/vim-watchdogs";
|
2016-01-22 23:02:39 +03:00
|
|
|
rev = "ebcf3df39007aa5d65910f44eb20c9caea9007df";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "0b0sicq8vgil9nm6vnp3k1vlsc6na54cy95pb68w4bj7mscd0q9j";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
2016-02-25 12:17:06 +03:00
|
|
|
vim-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-racer-2016-03-29";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2016-02-25 12:17:06 +03:00
|
|
|
url = "git://github.com/racer-rust/vim-racer";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "54f10ee0016f90167e4ff9acaca9beaf8c3b85b5";
|
|
|
|
sha256 = "0gpm8h3wqsncyy8ldgwsyk7b70b4j0ia3632h5f3pchq7pb46h8g";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
2016-02-25 12:17:06 +03:00
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "neocomplete-vim-2016-04-06";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/shougo/neocomplete.vim";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "738bf323deaa844f9bd45c9a65d99699e73cd772";
|
|
|
|
sha256 = "15nbykpp8mshmxb1dfb256yx0k4296arahz97f2x6wm6x44g8yns";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "neosnippet-snippets-2016-03-21";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/shougo/neosnippet-snippets";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "1cd353ac0d0e9ad0eba9d57e3eda34b3abefd7ff";
|
|
|
|
sha256 = "066svirnvz35bz1hi23ffqsa208l467lsld0jg7yzmh8gvfi32jb";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "neosnippet-vim-2016-03-30";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/shougo/neosnippet.vim";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "ce3c3d209c38a6d87bbf1408d293e179f95e7bb8";
|
|
|
|
sha256 = "0lp1p8vwnnwrnhiivzzzd0688vivyxqjgl75piq0xfw24v9ncgcf";
|
2015-09-01 05:10:53 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "unite-vim-2016-04-15";
|
2015-09-01 05:10:53 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/shougo/unite.vim";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "21b6c8846b4c8fb62761e1470cbad8d2fc08ce6c";
|
|
|
|
sha256 = "15h835401ki6phnxcmh6w8prkfdf37qdq0rc64dslg5jv3cw3b0r";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vimproc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vimproc-vim-2016-04-10";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/shougo/vimproc.vim";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "b05d30228ecb97acc2b398cca34b230092722268";
|
|
|
|
sha256 = "0r27652gpqrb8p552yansvdvw703bpd9i67lzs3i11mp1gd5krrd";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
2015-06-01 13:14:47 +03:00
|
|
|
buildInputs = [ which ];
|
|
|
|
|
|
|
|
buildPhase = ''
|
2015-08-28 06:35:46 +03:00
|
|
|
substituteInPlace autoload/vimproc.vim \
|
|
|
|
--replace vimproc_mac.so vimproc_unix.so \
|
|
|
|
--replace vimproc_linux64.so vimproc_unix.so \
|
|
|
|
--replace vimproc_linux32.so vimproc_unix.so
|
2015-06-01 13:14:47 +03:00
|
|
|
make -f make_unix.mak
|
|
|
|
'';
|
|
|
|
};
|
2014-12-04 17:32:29 +03:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vimshell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vimshell-vim-2016-04-04";
|
2015-06-01 13:14:47 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/shougo/vimshell.vim";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "bdcd197b701734a743903c7547e9f56842701614";
|
|
|
|
sha256 = "04b4kzjg0b8blfqcc21vvn7myq9g7iyn2zy1ypiil64bbch1aw3p";
|
2015-06-01 13:14:47 +03:00
|
|
|
};
|
|
|
|
dependencies = [ "vimproc-vim" ];
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
2015-10-02 12:36:09 +03:00
|
|
|
gundo-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-01-22 23:02:39 +03:00
|
|
|
name = "gundo-vim-2016-01-19";
|
2015-10-02 12:36:09 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/sjl/gundo.vim";
|
2016-01-22 23:02:39 +03:00
|
|
|
rev = "e7fe41024ace9047eee610f23311d44fd9d917c0";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1kdz2qr4z2k2dz6p0jr6y5zwi7n7k1g3m2k52iz03dicvmb5d59h";
|
2015-10-02 12:36:09 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim-hardtime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-hardtime-2016-03-28";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/takac/vim-hardtime";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "9764bc446dc2a917583e29c5dc58eac3f2c1f80d";
|
|
|
|
sha256 = "1yk4452lb19s04184h58562rmkbbyb4w02h5ay3j4da3gc0j1fml";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-quickrun-2016-03-27";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/thinca/vim-quickrun";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "5e3d1c94f0deee5b4e0c7630e7b7362213d9fda7";
|
|
|
|
sha256 = "0lzvfxsvq1c85h7ym87yjx71w4pissd68hgfn3w2nwyl7zj4d91s";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
2015-09-01 05:10:53 +03:00
|
|
|
molokai = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-12-11 21:31:40 +03:00
|
|
|
name = "molokai-2015-11-11";
|
2015-09-01 05:10:53 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/tomasr/molokai";
|
2015-12-11 21:31:40 +03:00
|
|
|
rev = "c67bdfcdb31415aa0ade7f8c003261700a885476";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1piszjr5kyw43ac1f0jh9z88g824xknshrkchbys9qxlz7pd831s";
|
2015-09-01 05:10:53 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-10-02 11:26:46 +03:00
|
|
|
vim-eunuch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-eunuch-2016-04-13";
|
2015-10-02 11:26:46 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/tpope/vim-eunuch";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "07ca4836c5f0b325ebb4d706f94a14eb8c722f51";
|
|
|
|
sha256 = "0im8fkw313z3hzhpz5wan8lj1ka6d2vx70ngg9anipwyx0lvl5q3";
|
2015-10-02 11:26:46 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
hasksyn = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "hasksyn-2014-09-03";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/travitch/hasksyn";
|
|
|
|
rev = "c434040bf13a17ca20a551223021b3ace7e453b9";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "0c8r72qw7r7sd2cww07x6n2sp5cwkgamjf8khcdh39zcia93b9xi";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-haskellconceal = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "vim-haskellconceal-2014-10-28";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/twinside/vim-haskellconceal";
|
|
|
|
rev = "f73c5dd660b7009a050b131783d7c17b4954e4d9";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1a1v0m3qj0gian3mp5xynf2ghscr3xaid37b0wi38bb4f2qrigqy";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "youcompleteme-2016-04-10";
|
2015-06-01 13:14:47 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/valloric/youcompleteme";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "f67033c990ff5d37ef91ba02da94f6d7409e1c5a";
|
|
|
|
sha256 = "0hwpbj5hr9d26xdcjfxbssyrsl4926c8g999jzpah0sls1r3y2f0";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
2015-06-01 13:14:47 +03:00
|
|
|
buildInputs = [
|
2016-01-09 00:38:23 +03:00
|
|
|
python go cmake
|
2015-06-10 18:20:27 +03:00
|
|
|
(if stdenv.isDarwin then llvmPackages.clang else llvmPackages.clang-unwrapped)
|
|
|
|
llvmPackages.llvm
|
2016-01-09 00:38:23 +03:00
|
|
|
] ++ stdenv.lib.optional stdenv.isDarwin Cocoa;
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
patchShebangs .
|
2016-01-16 22:14:49 +03:00
|
|
|
substituteInPlace plugin/youcompleteme.vim \
|
|
|
|
--replace "'ycm_path_to_python_interpreter', '''" "'ycm_path_to_python_interpreter', '${python}/bin/python'"
|
2015-06-01 13:14:47 +03:00
|
|
|
|
2016-01-09 00:38:23 +03:00
|
|
|
mkdir build
|
|
|
|
pushd build
|
|
|
|
cmake -G "Unix Makefiles" . ../third_party/ycmd/cpp -DPYTHON_LIBRARIES:PATH=${python}/lib/libpython2.7.so -DPYTHON_INCLUDE_DIR:PATH=${python}/include/python2.7 -DUSE_CLANG_COMPLETER=ON -DUSE_SYSTEM_LIBCLANG=ON
|
2016-03-19 13:11:22 +03:00
|
|
|
make ycm_core -j''${NIX_BUILD_CORES} -l''${NIX_BUILD_CORES}}
|
2016-01-09 00:38:23 +03:00
|
|
|
${python}/bin/python ../third_party/ycmd/build.py --gocode-completer --clang-completer --system-libclang
|
|
|
|
popd
|
2015-06-01 13:14:47 +03:00
|
|
|
'';
|
2014-12-04 17:32:29 +03:00
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
meta = {
|
|
|
|
description = "Fastest non utf-8 aware word and C completion engine for Vim";
|
|
|
|
homepage = http://github.com/Valloric/YouCompleteMe;
|
|
|
|
license = stdenv.lib.licenses.gpl3;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [marcweber jagajaga];
|
2016-01-20 00:41:31 +03:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2015-06-01 13:14:47 +03:00
|
|
|
};
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
2016-04-16 01:32:47 +03:00
|
|
|
vim-airline-themes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "vim-airline-themes-2016-04-14";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/vim-airline/vim-airline-themes";
|
|
|
|
rev = "60105c7e8827623f646b9b030a68026cddee3d19";
|
|
|
|
sha256 = "1xs30363797l4f5n56d0f4f35bgkpq00fv3j9jbcz0nj0cjwik2v";
|
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-10-02 11:26:46 +03:00
|
|
|
vim-pandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-pandoc-2016-04-06";
|
2015-10-02 11:26:46 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/vim-pandoc/vim-pandoc";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "c08a9205ad6960ac1b0931acc9742ac1fa6ce58c";
|
|
|
|
sha256 = "0k4hbxblw3jwm0hl222alg2f0z0ar3lkphydqrnqgckcm3cgzpdy";
|
2015-10-02 11:26:46 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
vim-pandoc-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-pandoc-syntax-2016-03-20";
|
2015-10-02 11:26:46 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/vim-pandoc/vim-pandoc-syntax";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "a35e9ce28bae85b1ce5d4f817882a8d78efcd6be";
|
|
|
|
sha256 = "1d3yw2v9giw2nyk4yb8qdav42wki81g8nzn3dz3rzb6dqq1k3skv";
|
2015-10-02 11:26:46 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
Colour-Sampler-Pack = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "Colour-Sampler-Pack-2012-11-29";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/vim-scripts/Colour-Sampler-Pack";
|
|
|
|
rev = "05cded87b2ef29aaa9e930230bb88e23abff4441";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "03v2r18sfgs0xbgy9p56pxfdg0lsk6m7wyr5hw63wm1nzpwiipg3";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
a-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-06-16 01:43:54 +03:00
|
|
|
name = "a-vim-2010-11-06";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/vim-scripts/a.vim";
|
|
|
|
rev = "2cbe946206ec622d9d8cf2c99317f204c4d41885";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "0h62v9z5bh9xmaq22pqdb3z79i84a5rknqm68mjpy7nq7s3q42fa";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-06-16 01:43:54 +03:00
|
|
|
name = "align-2012-08-07";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/vim-scripts/align";
|
|
|
|
rev = "787662fe90cd057942bc5b682fd70c87e1a9dd77";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "0acacr572kfh7jvavbw61q5pkwrpi1albgancma063rpax1pddgp";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
2015-07-09 05:09:13 +03:00
|
|
|
changeColorScheme-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "changeColorScheme-vim-2010-10-17";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/vim-scripts/changeColorScheme.vim";
|
|
|
|
rev = "b041d49f828629d72f2232531a230d1ec5de2405";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "0pybhsg9k9252d4ifdc4gsar8lkmfzbvs6xkzqq1m6f35l9wqk09";
|
2015-07-09 05:09:13 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-07-29 21:58:17 +03:00
|
|
|
random-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "random-vim-2010-10-17";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/vim-scripts/random.vim";
|
|
|
|
rev = "b2d85eb24a38074eab37a5acf2a295e1f2ad8989";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1lzy2cq4jcrsqyxlnbnd0y6j4mabm09bi7q22lf6vinqlb84w7sp";
|
2015-07-29 21:58:17 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
tabmerge = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "tabmerge-2010-10-17";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/vim-scripts/tabmerge";
|
|
|
|
rev = "074e5f06f26e7108a0570071a0f938a821768c06";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "0prkyza1n49cdaslcr57w8zv15vw78mlqbzib2xipmawzjq02idq";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
2015-07-29 21:58:17 +03:00
|
|
|
wombat256-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "wombat256-vim-2010-10-17";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/vim-scripts/wombat256.vim";
|
|
|
|
rev = "8734ba45dcf5e38c4d2686b35c94f9fcb30427e2";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "01fdvfwdfqn5xi88lfanb4lb6jmn1ma6wq6d9jj2x7qamdbpvsrg";
|
2015-07-29 21:58:17 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-wakatime-2016-03-21";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/wakatime/vim-wakatime";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "def34fb17502e555ac9b70348640c4614779bfff";
|
|
|
|
sha256 = "0m3dgs4jf2q0kn2b4rff0j2kaf2030h7ixsn5ab54xdlgfdn6z7n";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
2015-06-01 13:14:47 +03:00
|
|
|
buildInputs = [ python ];
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
command-t = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "command-t-2016-03-12";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
2015-06-01 13:14:47 +03:00
|
|
|
url = "git://github.com/wincent/command-t";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "2d80b2e65cd690dd17c66fb52e5f9fb09700b1e7";
|
|
|
|
sha256 = "1ndzjsrf2nz7gaq6q58p4pna82a4zbirclyjkgzg6a58qinhm3pi";
|
2015-03-26 21:16:21 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
dependencies = [];
|
|
|
|
buildInputs = [ perl ruby ];
|
|
|
|
buildPhase = ''
|
|
|
|
pushd ruby/command-t
|
|
|
|
ruby extconf.rb
|
|
|
|
make
|
|
|
|
popd
|
|
|
|
'';
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
2015-08-27 19:08:15 +03:00
|
|
|
goyo = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "goyo-2016-04-03";
|
2015-08-27 19:08:15 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/junegunn/goyo.vim";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "8e8f1d45b61e1fce7f84ee061c38f9e033e86ff9";
|
|
|
|
sha256 = "0q3in448s99df4dls4vlfsnh15q9rargsb68axj4z5z0jdkncpwi";
|
2015-08-27 19:08:15 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
matchit-zip = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "matchit-zip";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.vim.org/scripts/download_script.php?src_id=8196";
|
|
|
|
name = "matchit.zip";
|
|
|
|
sha256 = "1bbm8j1bhb70kagwdimwy9vcvlrz9ax5bk2a7wrmn4cy87f9xj4l";
|
|
|
|
};
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
dependencies = [];
|
|
|
|
meta = {
|
|
|
|
url = "http://www.vim.org/scripts/script.php?script_id=39";
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
unpackPhase = ''
|
|
|
|
(
|
|
|
|
sourceRoot=d
|
|
|
|
mkdir $sourceRoot; cd $sourceRoot;
|
|
|
|
unzip $src
|
|
|
|
)
|
|
|
|
'';
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
pathogen = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-02-25 12:17:06 +03:00
|
|
|
name = "pathogen-2016-01-26";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/tpope/vim-pathogen";
|
2016-02-25 12:17:06 +03:00
|
|
|
rev = "8c91196cfd9c8fe619f35fac6f2ac81be10677f8";
|
|
|
|
sha256 = "17d1903spczg2rk0qzg94vvq41dwhmnxwajqgzcx4lmf606cfspi";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
quickfixstatus = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-03-26 21:16:21 +03:00
|
|
|
name = "quickfixstatus-2011-09-02";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/dannyob/quickfixstatus";
|
|
|
|
rev = "fd3875b914fc51bbefefa8c4995588c088163053";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "16vxhvyxq51y7wnx0c1fmdi2yb6kfr1pxijq65gxj8qwvbak2s3v";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
rainbow_parentheses = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-03-26 21:16:21 +03:00
|
|
|
name = "rainbow_parentheses-2013-03-04";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/kien/rainbow_parentheses.vim";
|
|
|
|
rev = "eb8baa5428bde10ecc1cb14eed1d6e16f5f24695";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1qw84imlhq4654mxazj7j3sp5g1j3yjxi496i08iix06dm15m5s7";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
rust = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-03-26 21:16:21 +03:00
|
|
|
name = "rust-2015-01-29";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/wting/rust.vim";
|
2015-02-06 02:54:54 +03:00
|
|
|
rev = "2450ecf3091cc7c2711ca9f00eae8e3bedd04376";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1vn4ynvx1pbgvq9ggn21aaazz8jpsh9l6r3n3sd0y46n0qn8nblx";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
sensible = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "sensible-2016-03-18";
|
2015-02-08 18:12:59 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/tpope/vim-sensible";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "9e91be7e0fb42949831fe3161ef583363648aa58";
|
|
|
|
sha256 = "1g1l3v33g9229r4g4kcx8m1yrh397yf3fn6bxis57n3lg6lmb6wm";
|
2015-02-08 18:12:59 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
2015-03-26 21:16:21 +03:00
|
|
|
|
2015-02-08 18:12:59 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
2015-07-03 11:11:22 +03:00
|
|
|
sleuth = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "sleuth-2015-06-07";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/tpope/vim-sleuth";
|
|
|
|
rev = "a17462708aa40a7fc0afd4effa559087d8a2c908";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "09b01ywp0yd3lajs7gzv17qvjwbffdh6k014ws92b50cwv2vgx3j";
|
2015-07-03 11:11:22 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
snipmate = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "snipmate-2016-04-04";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/garbas/vim-snipmate";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "66555c2a86ba2136459190c06aa2c0f25ad38bb3";
|
|
|
|
sha256 = "01dnscgnkjy8q5ajnxsaxi1zn97v1fbhr4q5sjdqazdis9zxlqq2";
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
2014-12-18 02:41:47 +03:00
|
|
|
dependencies = ["vim-addon-mw-utils" "tlib"];
|
2014-12-04 17:32:29 +03:00
|
|
|
|
2014-08-13 21:58:25 +04:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
sourcemap = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-03-26 21:16:21 +03:00
|
|
|
name = "sourcemap-2012-09-19";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/chikatoike/sourcemap.vim";
|
|
|
|
rev = "0dd82d40faea2fdb0771067f46c01deb41610ba1";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1gcgnynallz420911fdfm0ccbv3zs78p69nnh2ls1r4vlfp7g350";
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
2014-08-13 21:58:25 +04:00
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
surround = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-08-26 04:00:19 +03:00
|
|
|
name = "surround-2015-08-07";
|
2014-08-13 21:58:25 +04:00
|
|
|
src = fetchgit {
|
2014-12-04 17:32:29 +03:00
|
|
|
url = "git://github.com/tpope/vim-surround";
|
2015-08-26 04:00:19 +03:00
|
|
|
rev = "2d05440ad23f97a7874ebd9b5de3a0e65d25d85c";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "0l5kvn2b1v2h90c02ymgsv88p89d0hzsbr6zwf0p2x2f72xjqdz5";
|
2014-11-20 23:49:17 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
2014-12-04 17:32:29 +03:00
|
|
|
|
2014-11-20 23:49:17 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
table-mode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "table-mode-2016-04-09";
|
2014-12-04 17:32:29 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/dhruvasagar/vim-table-mode";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "4cf1f534307fc2c89b63075bd6b36b3ee352fdbb";
|
|
|
|
sha256 = "0amjlb4im19irahlqmp6pmcyjdy0ndiyrgrm0jm6k9iv74arhg8r";
|
2015-02-06 02:54:54 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
taglist = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "taglist";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.vim.org/scripts/download_script.php?src_id=19574";
|
|
|
|
name = "taglist_46.zip";
|
|
|
|
sha256 = "18cbv462vwg7vip2p99qlahm99hswav96cj4ki227kyi05q2lkjj";
|
|
|
|
};
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
dependencies = [];
|
|
|
|
meta = {
|
|
|
|
url = "http://www.vim.org/scripts/script.php?script_id=273";
|
|
|
|
};
|
|
|
|
|
|
|
|
setSourceRoot = ''
|
|
|
|
export sourceRoot=taglist
|
|
|
|
mkdir taglist
|
|
|
|
mv doc taglist
|
|
|
|
mv plugin taglist
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2015-10-16 13:55:56 +03:00
|
|
|
tlib = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "tlib-2016-04-06";
|
2015-10-16 13:55:56 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/tomtom/tlib_vim";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "34b13299b5da7ad66ea387027d458bd54127687c";
|
|
|
|
sha256 = "18jhq6m25qv0cfm5iyxi268x1cww6xi5p4hx4c48fsq919bk6k8f";
|
2015-10-16 13:55:56 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-02-25 12:17:06 +03:00
|
|
|
name = "undotree-2016-02-23";
|
2014-11-20 23:49:17 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/mbbill/undotree";
|
2016-02-25 12:17:06 +03:00
|
|
|
rev = "e5a01b2eb94afd256a96cac07ba2981a55dd9665";
|
|
|
|
sha256 = "1dga7yhk5gh980w2qlf764i9f2mba4ij9habd86i9mlsh3wdqnrm";
|
2014-10-21 16:24:30 +04:00
|
|
|
};
|
2014-11-20 23:49:17 +03:00
|
|
|
dependencies = [];
|
2014-08-13 21:58:25 +04:00
|
|
|
|
2015-02-06 02:54:54 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
2015-10-16 13:55:56 +03:00
|
|
|
vim-addon-actions = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "vim-addon-actions-2014-09-22";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/MarcWeber/vim-addon-actions";
|
|
|
|
rev = "a5d20500fb8812958540cf17862bd73e7af64936";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "10v3vxgrlfdd34s5kvh4si985gpygv804fygdwy27rr93xxfphyj";
|
2015-10-16 13:55:56 +03:00
|
|
|
};
|
|
|
|
dependencies = ["vim-addon-mw-utils" "tlib"];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim-addon-async = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-03-26 21:16:21 +03:00
|
|
|
name = "vim-addon-async-2013-10-18";
|
2014-11-20 23:49:17 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/MarcWeber/vim-addon-async";
|
|
|
|
rev = "dadc96e188f1cdacbac62129eb29a1eacfed792c";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "01sxg88578drmwxpphpj7r7mb7l0wfly4509s85r99cc3bi43y97";
|
2014-10-20 10:55:25 +04:00
|
|
|
};
|
2014-12-18 02:41:47 +03:00
|
|
|
dependencies = ["vim-addon-signs"];
|
2014-10-20 10:55:25 +04:00
|
|
|
|
2015-02-06 02:54:54 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
2015-12-11 21:31:40 +03:00
|
|
|
vim-addon-background-cmd = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "vim-addon-background-cmd-2015-12-11";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/MarcWeber/vim-addon-background-cmd";
|
|
|
|
rev = "abf2abf339652d2bc79da81f9d131edfe2755f5a";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "080wfsid1iq5b9lqapg0wis5642c69sf9nh9rhs79qapl6x3w8h6";
|
2015-12-11 21:31:40 +03:00
|
|
|
};
|
|
|
|
dependencies = ["vim-addon-mw-utils"];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim-addon-commenting = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-03-26 21:16:21 +03:00
|
|
|
name = "vim-addon-commenting-2013-06-10";
|
2014-11-20 23:49:17 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/MarcWeber/vim-addon-commenting";
|
|
|
|
rev = "b7cf748ac1c9bf555cbd347589e3b7196030d20b";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "0glvpq7i8s9jdi6lvpl8hpyd7mrhq14kdkn94i51n2lzcvvdbmsa";
|
2014-11-20 23:49:17 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
2014-08-13 21:58:25 +04:00
|
|
|
|
2015-02-06 02:54:54 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-addon-completion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-03-26 21:16:21 +03:00
|
|
|
name = "vim-addon-completion-2015-02-10";
|
2015-02-06 02:54:54 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/MarcWeber/vim-addon-completion";
|
2015-03-26 21:16:21 +03:00
|
|
|
rev = "021c449a5ce1ce4ac0af5955e05b0279c1cc0e75";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1sm00gs0h96kh7h64gjkyniw07495vqylh157m2f9xzd953lg6ln";
|
2015-02-06 02:54:54 +03:00
|
|
|
};
|
|
|
|
dependencies = ["tlib"];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
2015-10-16 13:55:56 +03:00
|
|
|
vim-addon-errorformats = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "vim-addon-errorformats-2014-11-05";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/MarcWeber/vim-addon-errorformats";
|
|
|
|
rev = "dcbb203ad5f56e47e75fdee35bc92e2ba69e1d28";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "159zqm69fxbxcv3b2y99g57bf20qrzsijcvb5rzy2njxah3049m1";
|
2015-10-16 13:55:56 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
vim-addon-goto-thing-at-cursor = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "vim-addon-goto-thing-at-cursor-2012-01-11";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/MarcWeber/vim-addon-goto-thing-at-cursor";
|
|
|
|
rev = "f052e094bdb351829bf72ae3435af9042e09a6e4";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1skq43y7laq2ric7bqh9abx9mxix5k6xzcs4qnwhsqwskp4qlr9l";
|
2015-10-16 13:55:56 +03:00
|
|
|
};
|
|
|
|
dependencies = ["tlib"];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim-addon-local-vimrc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-03-26 21:16:21 +03:00
|
|
|
name = "vim-addon-local-vimrc-2015-03-19";
|
2014-11-20 23:49:17 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/MarcWeber/vim-addon-local-vimrc";
|
2015-03-26 21:16:21 +03:00
|
|
|
rev = "6a27f95b35befa70cd0d049329cd0920566c764b";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "0n8lwl1gyak149p7jpgm0qbmfj8hcg8hirx3dxdhizw0yc47ws7h";
|
2014-11-20 23:49:17 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
2014-08-13 21:58:25 +04:00
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-addon-manager = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-02-25 12:17:06 +03:00
|
|
|
name = "vim-addon-manager-2016-02-07";
|
2014-08-15 21:45:32 +04:00
|
|
|
src = fetchgit {
|
2014-11-20 23:49:17 +03:00
|
|
|
url = "git://github.com/MarcWeber/vim-addon-manager";
|
2016-02-25 12:17:06 +03:00
|
|
|
rev = "872f9302cf0eb8e9cb6259ea4f329d2265f9e32d";
|
|
|
|
sha256 = "0rl6sy1gfjsfr1hg2ilhhxppifvjfqn815kh27b3ikcy82rp7sb0";
|
2014-11-20 23:49:17 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
2016-01-09 00:38:23 +03:00
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin Cocoa;
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-addon-mru = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-03-26 21:16:21 +03:00
|
|
|
name = "vim-addon-mru-2013-08-08";
|
2014-11-20 23:49:17 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/MarcWeber/vim-addon-mru";
|
|
|
|
rev = "e41e39bd9d1bf78ccfd8d5e1bc05ae5e1026c2bb";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "0q6rxr9nrp63kidr3m3c2z5sda4g813pzshg0scxkjr8dxwhzdqm";
|
2014-11-20 23:49:17 +03:00
|
|
|
};
|
2014-12-18 02:41:47 +03:00
|
|
|
dependencies = ["vim-addon-other" "vim-addon-mw-utils"];
|
2014-08-15 21:45:32 +04:00
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-addon-mw-utils = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-03-26 21:16:21 +03:00
|
|
|
name = "vim-addon-mw-utils-2012-11-05";
|
2014-11-20 23:49:17 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/MarcWeber/vim-addon-mw-utils";
|
|
|
|
rev = "0c5612fa31ee434ba055e21c76f456244b3b5109";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "075r4a73vv6hcrsfznac32nicdk0x7lvxx4fwmii03q5b4dns6sf";
|
2014-10-20 10:55:25 +04:00
|
|
|
};
|
2014-11-20 23:49:17 +03:00
|
|
|
dependencies = [];
|
2014-11-08 21:34:13 +03:00
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-addon-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-03-26 21:16:21 +03:00
|
|
|
name = "vim-addon-nix-2015-03-10";
|
2014-11-20 23:49:17 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/MarcWeber/vim-addon-nix";
|
2015-03-26 21:16:21 +03:00
|
|
|
rev = "2aed79ba5d8c5e6abd102de77e55e242f61b17f1";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1qipxzn79nbmjzppa0r59796r56xz5g88jm66fjpqndndhn6wchf";
|
2014-11-20 23:49:17 +03:00
|
|
|
};
|
2014-12-18 02:41:47 +03:00
|
|
|
dependencies = ["vim-addon-completion" "vim-addon-goto-thing-at-cursor" "vim-addon-errorformats" "vim-addon-actions" "vim-addon-mw-utils" "tlib"];
|
2014-11-08 21:34:13 +03:00
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-addon-other = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-03-26 21:16:21 +03:00
|
|
|
name = "vim-addon-other-2014-07-15";
|
2014-11-20 23:49:17 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/MarcWeber/vim-addon-other";
|
|
|
|
rev = "f78720c9cb5bf871cabb13c7cbf94378dbf0163b";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "06sdjnyp2hqs0kia2hzflyxwiwpp14mkrhhm4l3k2q2pnzj2gw23";
|
2014-11-20 23:49:17 +03:00
|
|
|
};
|
2014-12-18 02:41:47 +03:00
|
|
|
dependencies = ["vim-addon-actions" "vim-addon-mw-utils"];
|
2014-11-08 21:34:13 +03:00
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-addon-php-manual = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-03-26 21:16:21 +03:00
|
|
|
name = "vim-addon-php-manual-2015-01-01";
|
2014-11-08 21:34:13 +03:00
|
|
|
src = fetchgit {
|
2014-11-20 23:49:17 +03:00
|
|
|
url = "git://github.com/MarcWeber/vim-addon-php-manual";
|
2015-02-06 02:54:54 +03:00
|
|
|
rev = "5f9810dd1f6e9f36a45f637ae6260ccff09256ff";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1kc67f12wccqdza069b75lpcbqp4kv4r23i4mfz0ihwif5mfnhir";
|
2015-02-06 02:54:54 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
2015-12-11 21:31:40 +03:00
|
|
|
vim-addon-signs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "vim-addon-signs-2013-04-19";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/MarcWeber/vim-addon-signs";
|
|
|
|
rev = "17a49f293d18174ff09d1bfff5ba86e8eee8e8ae";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1f4gk984760cbkkwl9isqwab63ghny61h18nfh313maqwwr3mh59";
|
2015-12-11 21:31:40 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim-addon-sql = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-03-26 21:16:21 +03:00
|
|
|
name = "vim-addon-sql-2014-01-18";
|
2014-11-08 21:34:13 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/MarcWeber/vim-addon-sql";
|
|
|
|
rev = "05b8a0c211f1ae4c515c64e91dec555cdf20d90b";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1hjpx5s1vn8v7y73gis408jdy8vjivhag2ycp8lk5870jkk4lcx1";
|
2014-11-08 21:34:13 +03:00
|
|
|
};
|
2014-12-18 02:41:47 +03:00
|
|
|
dependencies = ["vim-addon-completion" "vim-addon-background-cmd" "tlib"];
|
2014-11-20 23:49:17 +03:00
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-addon-syntax-checker = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-03-26 21:16:21 +03:00
|
|
|
name = "vim-addon-syntax-checker-2013-07-12";
|
2014-11-08 21:34:13 +03:00
|
|
|
src = fetchgit {
|
2014-11-20 23:49:17 +03:00
|
|
|
url = "git://github.com/MarcWeber/vim-addon-syntax-checker";
|
|
|
|
rev = "8eb7217e636ca717d4de5cd03cc0180c5b66ae77";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "0gcvb922w4jsi203ygbnij9xhmgc6knj9b3ivw3m0fv5ckk4iw5f";
|
2014-11-08 21:34:13 +03:00
|
|
|
};
|
2014-12-18 02:41:47 +03:00
|
|
|
dependencies = ["vim-addon-mw-utils" "tlib"];
|
2014-11-20 23:49:17 +03:00
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-addon-toggle-buffer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-03-26 21:16:21 +03:00
|
|
|
name = "vim-addon-toggle-buffer-2012-01-13";
|
2014-11-08 21:34:13 +03:00
|
|
|
src = fetchgit {
|
2014-11-20 23:49:17 +03:00
|
|
|
url = "git://github.com/MarcWeber/vim-addon-toggle-buffer";
|
|
|
|
rev = "a1b38b9c5709cba666ed2d84ef06548f675c6b0b";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "0mb0vyr5rr0ywk26l9cwcplpfzsqdwv49d2nzdx1g685zvn6c8b7";
|
2014-11-08 21:34:13 +03:00
|
|
|
};
|
2014-12-18 02:41:47 +03:00
|
|
|
dependencies = ["vim-addon-mw-utils" "tlib"];
|
2014-11-20 23:49:17 +03:00
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-addon-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-03-26 21:16:21 +03:00
|
|
|
name = "vim-addon-xdebug-2014-08-29";
|
2014-11-08 21:34:13 +03:00
|
|
|
src = fetchgit {
|
2014-11-20 23:49:17 +03:00
|
|
|
url = "git://github.com/MarcWeber/vim-addon-xdebug";
|
|
|
|
rev = "45f26407305b4ce6f8f5f37d2b5e6e4354104172";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1vv4jha79sw8yxzl9aygr44khqi8yrmz9ysvs95wjwk7yg5g4yqa";
|
2014-11-08 21:34:13 +03:00
|
|
|
};
|
2014-12-18 02:41:47 +03:00
|
|
|
dependencies = ["WebAPI" "vim-addon-mw-utils" "vim-addon-signs" "vim-addon-async"];
|
2014-11-20 23:49:17 +03:00
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-airline = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-airline-2016-04-12";
|
2014-11-08 21:34:13 +03:00
|
|
|
src = fetchgit {
|
2016-04-16 01:32:47 +03:00
|
|
|
url = "git://github.com/vim-airline/vim-airline";
|
|
|
|
rev = "1bb8b6278e901cbc282535cabb1f6e17f8059e2a";
|
|
|
|
sha256 = "10vlbv9p6zcibvxyjkgf03v8720j8zryl9s7kq0hj0h2z646kdw8";
|
2014-11-08 21:34:13 +03:00
|
|
|
};
|
2014-11-20 23:49:17 +03:00
|
|
|
dependencies = [];
|
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-05-11 22:46:41 +03:00
|
|
|
name = "vim-coffee-script-2015-04-20";
|
2014-11-08 21:34:13 +03:00
|
|
|
src = fetchgit {
|
2014-11-20 23:49:17 +03:00
|
|
|
url = "git://github.com/kchmck/vim-coffee-script";
|
2015-05-11 22:46:41 +03:00
|
|
|
rev = "32fe889b8cafd3a4921ef8e6485156453ff58c42";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "14464xyjiw58n785xrkyd5qrinz2gb0p4yhxh6b9r5698qjjn5np";
|
2014-11-08 21:34:13 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
2014-11-20 23:49:17 +03:00
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-easy-align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-03-09 20:24:06 +03:00
|
|
|
name = "vim-easy-align-2016-03-06";
|
2014-11-08 21:34:13 +03:00
|
|
|
src = fetchgit {
|
2014-11-20 23:49:17 +03:00
|
|
|
url = "git://github.com/junegunn/vim-easy-align";
|
2016-03-09 20:24:06 +03:00
|
|
|
rev = "0cb6b98fc155717b0a56c110551ac57d1d951ddb";
|
|
|
|
sha256 = "089c4grk24albishgxdskb1zsvxbzlp2yq1baf0vy6cryxwm8ykq";
|
2014-11-08 21:34:13 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
2014-11-20 23:49:17 +03:00
|
|
|
|
2015-05-11 22:46:41 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-gista = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-gista-2016-04-11";
|
2015-05-11 22:46:41 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/lambdalisue/vim-gista";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "7ff4d24f242d406ff71d9a65691357aee80f37f7";
|
|
|
|
sha256 = "0hm4lnf2mxvdvc13b67cwvyp7griir5lpacnb1sgjx4dxr0w4fzz";
|
2015-05-11 22:46:41 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-gitgutter-2016-03-29";
|
2014-11-08 21:34:13 +03:00
|
|
|
src = fetchgit {
|
2014-11-20 23:49:17 +03:00
|
|
|
url = "git://github.com/airblade/vim-gitgutter";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "78d83c7056e1973ed4cbf9b5b3f09263a3dbf968";
|
|
|
|
sha256 = "0gslmjizqaaa4fhcbdmrw2yvl70s06b3hwvjsx2zw7mlnj66lakv";
|
2014-11-08 21:34:13 +03:00
|
|
|
};
|
2014-11-20 23:49:17 +03:00
|
|
|
dependencies = [];
|
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-iced-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-03-26 21:16:21 +03:00
|
|
|
name = "vim-iced-coffee-script-2013-12-27";
|
2014-11-08 21:34:13 +03:00
|
|
|
src = fetchgit {
|
2014-11-20 23:49:17 +03:00
|
|
|
url = "git://github.com/noc7c9/vim-iced-coffee-script";
|
|
|
|
rev = "e42e0775fa4b1f8840c55cd36ac3d1cedbc1dea2";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "14yfirny359rlrr082il2ys3hxiyrbbk794rdxrs2lasjy8rb1f7";
|
2014-11-08 21:34:13 +03:00
|
|
|
};
|
2014-12-04 17:32:29 +03:00
|
|
|
dependencies = [];
|
2014-11-20 23:49:17 +03:00
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
|
|
|
vim-latex-live-preview = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-latex-live-preview-2016-03-16";
|
2014-11-08 21:34:13 +03:00
|
|
|
src = fetchgit {
|
2014-11-20 23:49:17 +03:00
|
|
|
url = "git://github.com/xuhdev/vim-latex-live-preview";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "99501642c1dd3f703ac6301ae13469f4990b7a06";
|
|
|
|
sha256 = "0dkm3v1jqi8aq0jfpa6fdwgbfbwidc32ci1y9vhqb1prs15qrqfl";
|
2014-11-08 21:34:13 +03:00
|
|
|
};
|
2014-11-20 23:49:17 +03:00
|
|
|
dependencies = [];
|
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
2015-07-29 21:58:17 +03:00
|
|
|
vim-multiple-cursors = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-multiple-cursors-2016-04-11";
|
2015-07-29 21:58:17 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/terryma/vim-multiple-cursors";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "25b567baf712a7e9bc8f3c9ca816bd579363109b";
|
|
|
|
sha256 = "1jvg5i76k58sz56z615pb7s7gg7jn0dpwf7rr76v22v4zpyij70h";
|
2015-07-29 21:58:17 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim-signature = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-signature-2016-04-10";
|
2014-11-08 21:34:13 +03:00
|
|
|
src = fetchgit {
|
2014-11-20 23:49:17 +03:00
|
|
|
url = "git://github.com/kshenoy/vim-signature";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "31028e7a0d015b04a51e721af155fd11d1b6ac76";
|
|
|
|
sha256 = "1f78ipkfnhmlhw88ii6rqxwfm7qpdc1c8v2716il240bk08khkff";
|
2015-03-28 20:44:35 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
2015-08-27 19:08:15 +03:00
|
|
|
vim-signify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-signify-2016-04-08";
|
2015-08-27 19:08:15 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/mhinz/vim-signify";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "37376d9970294063b2ba9594204d50cfa181ebb6";
|
|
|
|
sha256 = "0ih09i0smn768fkbzbjpfzsjfsm4w653ghaykzcn4hbail67nx84";
|
2015-08-27 19:08:15 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vim-snippets-2016-04-13";
|
2014-11-08 21:34:13 +03:00
|
|
|
src = fetchgit {
|
2014-11-20 23:49:17 +03:00
|
|
|
url = "git://github.com/honza/vim-snippets";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "e055cf9a71e52690a6fd5b4d0b145672950aa423";
|
|
|
|
sha256 = "0d0dzhlngpzgwz6d21qdfmc4b9nl8zlhkm861y0fkxr81y6mvp80";
|
2014-11-08 21:34:13 +03:00
|
|
|
};
|
2014-11-20 23:49:17 +03:00
|
|
|
dependencies = [];
|
|
|
|
|
2014-12-04 17:32:29 +03:00
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
2015-08-27 19:08:15 +03:00
|
|
|
vim-webdevicons = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-03-09 20:24:06 +03:00
|
|
|
name = "vim-webdevicons-2016-03-04";
|
2015-08-27 19:08:15 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/ryanoasis/vim-devicons";
|
2016-03-09 20:24:06 +03:00
|
|
|
rev = "f8841e2bd46e9fed95c0389190e3ef1b6ba77440";
|
|
|
|
sha256 = "0f0fxn7pck9k642sgmv0y68qi0hqnw46pl919c2sq542da7g4k0p";
|
2015-08-27 19:08:15 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vim2hs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2015-03-26 21:16:21 +03:00
|
|
|
name = "vim2hs-2014-04-16";
|
2014-11-08 21:34:13 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/dag/vim2hs";
|
|
|
|
rev = "f2afd55704bfe0a2d66e6b270d247e9b8a7b1664";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "1c75nxk1vk8hq514wx1zm9i5d3qdpd65mv4v4gr50kmvjn2waps8";
|
2014-11-08 21:34:13 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
2014-11-20 23:49:17 +03:00
|
|
|
|
|
|
|
};
|
2015-06-01 13:14:47 +03:00
|
|
|
|
2015-08-06 04:56:46 +03:00
|
|
|
vimwiki = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-04-16 01:32:47 +03:00
|
|
|
name = "vimwiki-2016-03-31";
|
2015-08-06 04:56:46 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/vimwiki/vimwiki";
|
2016-04-16 01:32:47 +03:00
|
|
|
rev = "129c2818106bdb9230bbd99ee8eb81fa47c7a414";
|
|
|
|
sha256 = "16qq2c2vwc3yndmv2qd9vb2krrx3drwk4ylql49wf04h8sdshfsp";
|
2015-08-06 04:56:46 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-02-07 09:38:24 +03:00
|
|
|
vinegar = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "vinegar-2016-01-30";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/tpope/vim-vinegar";
|
|
|
|
rev = "75fc3824bc09053f22735d6726c5cfd614c15642";
|
2016-02-25 12:17:06 +03:00
|
|
|
sha256 = "19jl854wylmfdr9k4bfyffkz8bl4vpx1znnxzx0qj7cz2s3i9z0r";
|
2016-02-07 09:38:24 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-01 13:14:47 +03:00
|
|
|
vundle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
2016-03-09 20:24:06 +03:00
|
|
|
name = "vundle-2016-02-26";
|
2014-11-08 21:34:13 +03:00
|
|
|
src = fetchgit {
|
2014-11-20 23:49:17 +03:00
|
|
|
url = "git://github.com/gmarik/vundle";
|
2016-03-09 20:24:06 +03:00
|
|
|
rev = "4984767509e3d05ca051e253c8a8b37de784be45";
|
|
|
|
sha256 = "0n2k3ip81yfx00ch45nqiwayhz8qxmwg5s34a4k5snapzcxcm2fn";
|
2014-11-08 21:34:13 +03:00
|
|
|
};
|
|
|
|
dependencies = [];
|
2014-11-20 23:49:17 +03:00
|
|
|
|
2014-11-08 21:34:13 +03:00
|
|
|
};
|
2015-08-26 04:00:19 +03:00
|
|
|
|
2016-02-29 20:40:32 +03:00
|
|
|
vim-pandoc-after = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "vim-pandoc-after-2015-06-01";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/vim-pandoc/vim-pandoc-after";
|
|
|
|
rev = "4377665e5c98f29ea838deb3b942200b8dd096ef";
|
|
|
|
sha256 = "1di82bgi7sjn7lmma7g9zbdraamsy9c6g7ms6jgglfvynbbvmgg0";
|
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
vimpreviewpandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
|
|
name = "vimpreviewpandoc-2016-03-03";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/tex/vimpreviewpandoc";
|
|
|
|
rev = "7c05b4a7bf55a361c7ac33e6e05f7965daed5889";
|
|
|
|
sha256 = "12xnnsvdsl2wc7fy537pdk6s3nfxw46g1l4xqr0fxzhz712nczk5";
|
|
|
|
};
|
|
|
|
dependencies = [];
|
|
|
|
|
|
|
|
};
|
2013-05-27 20:29:35 +04:00
|
|
|
}
|