1bb80801eb
vimPlugins: youcompleteme FIX #14006 No rule to make target 'ycm_support_libs'
1650 lines
53 KiB
Nix
1650 lines
53 KiB
Nix
# TODO check that no license information gets lost
|
|
{ fetchurl, bash, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip
|
|
, which, fetchgit, fetchFromGitHub, fetchhg, fetchzip, llvmPackages, zip
|
|
, vim_configurable, vimPlugins, xkb_switch, git
|
|
, Cocoa
|
|
}:
|
|
|
|
let
|
|
|
|
inherit (vimUtils.override {inherit vim;}) rtpPath addRtp buildVimPlugin
|
|
buildVimPluginFrom2Nix vimHelpTags;
|
|
in
|
|
|
|
# TL;DR
|
|
# Add your plugin to ./vim-plugin-names
|
|
# Generate via `vim-plugin-names-to-nix`
|
|
# If plugin is complicated then make changes to ./vim2nix/additional-nix-code
|
|
|
|
# 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
|
|
rec {
|
|
# 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";
|
|
namefiles = [./vim-plugin-names];
|
|
};
|
|
|
|
# Section I
|
|
vim-addon-vim2nix = vim2nix;
|
|
|
|
vim2nix = buildVimPluginFrom2Nix { # use it to update plugins
|
|
name = "vim2nix";
|
|
src = ./vim2nix;
|
|
dependencies = ["vim-addon-manager"];
|
|
};
|
|
|
|
|
|
# Section II
|
|
# Update with vimUtils.vimPlugins.pluginnames2Nix command
|
|
|
|
# aliasess
|
|
"sourcemap.vim" = sourcemap;
|
|
Colour_Sampler_Pack = Colour-Sampler-Pack;
|
|
YouCompleteMe = youcompleteme;
|
|
airline = vim-airline;
|
|
alternative = a-vim; # backwards compat, added 2014-10-21
|
|
calendar = calendar-vim;
|
|
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
|
|
css_color_5056 = vim-css-color;
|
|
ctrlp = ctrlp-vim;
|
|
easy-align = vim-easy-align;
|
|
easymotion = vim-easymotion;
|
|
eighties = vim-eighties;
|
|
ghc-mod-vim = ghcmod;
|
|
gist-vim = Gist;
|
|
gitgutter = vim-gitgutter;
|
|
gundo = gundo-vim;
|
|
Gundo = gundo-vim; # backwards compat, added 2015-10-03
|
|
haskellConceal = haskellconceal; # backwards compat, added 2014-10-18
|
|
haskellconceal = vim-haskellconceal;
|
|
hier = vim-hier;
|
|
hoogle = Hoogle;
|
|
ipython = vim-ipython;
|
|
latex-live-preview = vim-latex-live-preview;
|
|
multiple-cursors = vim-multiple-cursors;
|
|
necoGhc = neco-ghc; # backwards compat, added 2014-10-18
|
|
neocomplete = neocomplete-vim;
|
|
neosnippet = neosnippet-vim;
|
|
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;
|
|
thumbnail = thumbnail-vim;
|
|
tmux-navigator = vim-tmux-navigator;
|
|
tmuxNavigator = tmux-navigator; # backwards compat, added 2014-10-18
|
|
tslime = tslime-vim;
|
|
vimproc = vimproc-vim;
|
|
vimshell = vimshell-vim;
|
|
watchdogs = vim-watchdogs;
|
|
webapi-vim = WebAPI;
|
|
wombat256 = wombat256-vim; # backwards compat, added 2015-7-8
|
|
yankring = YankRing;
|
|
|
|
CSApprox = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "CSApprox-2013-07-26";
|
|
src = fetchgit {
|
|
url = "git://github.com/godlygeek/csapprox";
|
|
rev = "7981dac51d8b6776985aa08cb7b5ee98ea7f2ddd";
|
|
sha256 = "17rqhf3gz2al597sy9smk10a7p1bh648659jkl867ay7g7mlgjwc";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
CheckAttach = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "CheckAttach-2015-06-22";
|
|
src = fetchgit {
|
|
url = "git://github.com/chrisbra/CheckAttach";
|
|
rev = "a1d86be7e69b25b41ce1a7fe2d2844330f783b68";
|
|
sha256 = "07rcp8phc0gazls0cassl64gvlxkp0hcc0c32adjw4jsdy11r4mq";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
Gist = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Gist-2015-10-25";
|
|
src = fetchgit {
|
|
url = "git://github.com/mattn/gist-vim";
|
|
rev = "88c331e2e07765090112a396e5e119b39b5aa754";
|
|
sha256 = "1igryyi85bk1pk0jmx4l01skgmjyg1kg1p3ylv0j22d5nibf79qd";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
Hoogle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Hoogle-2015-12-24";
|
|
src = fetchgit {
|
|
url = "git://github.com/Twinside/vim-hoogle";
|
|
rev = "a5db36f048ac16ab9774fc86f36cd4ae9a444932";
|
|
sha256 = "1855n6dsimbc0brfbmmkx1gszhmgfghm1h1mpi95mq9qzbwkgjri";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
Solarized = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Solarized-2011-05-09";
|
|
src = fetchgit {
|
|
url = "git://github.com/altercation/vim-colors-solarized";
|
|
rev = "528a59f26d12278698bb946f8fb82a63711eec21";
|
|
sha256 = "05d3lmd1shyagvr3jygqghxd3k8a4vp32723fvxdm57fdrlyzcm1";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
Supertab = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Supertab-2016-01-03";
|
|
src = fetchgit {
|
|
url = "git://github.com/ervandew/supertab";
|
|
rev = "66511772a430a5eaad7f7d03dbb02e8f33c4a641";
|
|
sha256 = "065l7vin3gdk4lzcavwl7k850kz93lqhazxn80p2d8rwkx732jgx";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
Syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Syntastic-2016-03-08";
|
|
src = fetchgit {
|
|
url = "git://github.com/scrooloose/syntastic";
|
|
rev = "0f82191a74328ecb618ac74735645fbd1c36d9a1";
|
|
sha256 = "1arai7blnicp28l6z92xzvvrwrblwg0z26lbr92nch4cpzsf1pzq";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
Tabular = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Tabular-2013-05-16";
|
|
src = fetchgit {
|
|
url = "git://github.com/godlygeek/tabular";
|
|
rev = "60f25648814f0695eeb6c1040d97adca93c4e0bb";
|
|
sha256 = "03zbpyvrw82cp6d1xm8pgi94cxwrlg8lgbiz471z51qmcann1j18";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
Tagbar = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Tagbar-2015-06-19";
|
|
src = fetchgit {
|
|
url = "git://github.com/majutsushi/tagbar";
|
|
rev = "7b36c46d17d57db34fdb0adac9ba6382d0bb5e66";
|
|
sha256 = "1iqk7y2ckkmzq22jmiyrrxhnzcy8r3kdizwf65l1qbbpfbkp6rrl";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
The_NERD_Commenter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "The_NERD_Commenter-2015-10-29";
|
|
src = fetchgit {
|
|
url = "git://github.com/scrooloose/nerdcommenter";
|
|
rev = "1f4bfd59920c101a30a74a07b824608a6e65f3fe";
|
|
sha256 = "0gdqmwsyk5ly96d0dp4j7pa0kp6qcl04nzxckh8kxjsbqnphmwaf";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
The_NERD_tree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "The_NERD_tree-2015-12-02";
|
|
src = fetchgit {
|
|
url = "git://github.com/scrooloose/nerdtree";
|
|
rev = "4ebbb533c3faf2c480211db2b547972bb3b60f2b";
|
|
sha256 = "1v883q3nbv8f5a7gkdsa1kvghf2k4s2pj4ql2m2i1ryn8xrslc7p";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
UltiSnips = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "UltiSnips-2016-02-13";
|
|
src = fetchgit {
|
|
url = "git://github.com/SirVer/ultisnips";
|
|
rev = "25882e95cd8981308c4b2d87dcc2c2d6ecd73a6d";
|
|
sha256 = "0bz1qywavysyqb2ni7s9k96pfwdldvhfz79xp5qcw352d1ii7s9n";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
VimOutliner = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "VimOutliner-2015-10-01";
|
|
src = fetchgit {
|
|
url = "git://github.com/vimoutliner/vimoutliner";
|
|
rev = "cb41cfd6d636e1243e7e9c46b35fc5cb50588069";
|
|
sha256 = "03w5y57329lnv2rxz0wvnfd1qv6d36zsqgwwvm2j8fvryhs7xbvg";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
WebAPI = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "WebAPI-2016-01-25";
|
|
src = fetchgit {
|
|
url = "git://github.com/mattn/webapi-vim";
|
|
rev = "5726e8270e2a774c7200ca79868b4128c0c57ad7";
|
|
sha256 = "0gfzhny2i6jwkcw5ayhinq0ia3jb086h7bvmxy55lgr0a7ykhvh1";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
YankRing = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "YankRing";
|
|
src = fetchurl {
|
|
url = "http://www.vim.org/scripts/download_script.php?src_id=23487";
|
|
name = "yankring_190.zip";
|
|
sha256 = "0nnxpsfjp2p9jvs3y5ynnd5s56snz9927zdp9bgmay2jgxfmp0si";
|
|
};
|
|
buildInputs = [ unzip ];
|
|
dependencies = [];
|
|
meta = {
|
|
url = "http://www.vim.org/scripts/script.php?script_id=1234";
|
|
};
|
|
|
|
|
|
};
|
|
|
|
commentary = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "commentary-2016-02-15";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-commentary";
|
|
rev = "4dcfc318e0b02fdbb0c2d9ff77cf3562b46eea25";
|
|
sha256 = "1l5krnkx7bx3xry0nj0amwgg6bhqw8ir0jzj75ibvklkg5lmqbxl";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
ctrlp-py-matcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "ctrlp-py-matcher-2016-01-13";
|
|
src = fetchgit {
|
|
url = "git://github.com/FelikZ/ctrlp-py-matcher";
|
|
rev = "8a803267a741cff3d6147650745f83c8f2125578";
|
|
sha256 = "0d5a7cqjh58l8qgj92s06f2ia83w51g4cic61qxd6sykv9xqiz17";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
ctrlp-z = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "ctrlp-z-2015-10-17";
|
|
src = fetchgit {
|
|
url = "git://github.com/amiorin/ctrlp-z";
|
|
rev = "d1a69ec623ce24b9a30fc8fe3cd468c322b03026";
|
|
sha256 = "16nsj1g8lqmyizlb5ijwhf4dsmh0xv1kwqq6jxvhaf55vfga82yl";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
extradite = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "extradite-2015-09-22";
|
|
src = fetchgit {
|
|
url = "git://github.com/int3/vim-extradite";
|
|
rev = "52326f6d333cdbb9e9c6d6772af87f4f39c00526";
|
|
sha256 = "1wfdw6g16nqwdalq7m7ncnxhzyjcl5c8nsbsnsnr5bgsfgp49xwi";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "fugitive-2016-03-05";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-fugitive";
|
|
rev = "099d65826e0e0863552a92f7e574e3f24c8f4197";
|
|
sha256 = "05ych7091gi1r22n8jkw2hxjyghcmbk0w227311ar3flgar6s197";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
ghcmod = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "ghcmod-2016-01-25";
|
|
src = fetchgit {
|
|
url = "git://github.com/eagletmt/ghcmod-vim";
|
|
rev = "815616e8b7d64677d6092e95bc6a3e83d2e035d4";
|
|
sha256 = "1s0wxccmxi0w7ywhwyxggv5n8lcjgh68rhbpp2zrv5n5sg0das73";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-autoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-autoformat-2016-02-29";
|
|
src = fetchgit {
|
|
url = "git://github.com/Chiel92/vim-autoformat";
|
|
rev = "36282560c3514453ac2db4d96085e6b6cfdc7a49";
|
|
sha256 = "1ppdy56i7l60x9jd346qqmv3pdx5k2w64gmxl5ah5qvgw2qcaz02";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-nix-2015-12-10";
|
|
src = fetchgit {
|
|
url = "git://github.com/LnL7/vim-nix";
|
|
rev = "f0b7bd4bce5ed0f12fb4d26115c84fb3edcd1e12";
|
|
sha256 = "0r3nffv2yv6vhzhkqx97diqwbcfqvc4j20nrcbmqhaf1bd6xvnsj";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-css-color = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-css-color-2016-03-07";
|
|
src = fetchgit {
|
|
url = "git://github.com/ap/vim-css-color";
|
|
rev = "81ce9558b0f5c8f0b015042415566f02360c67d0";
|
|
sha256 = "04if4ch5db7lkh0swb9rwqpqzk2k8kkc6aszy4bvqg08irk4lqsi";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "neomake-2016-02-20";
|
|
src = fetchgit {
|
|
url = "git://github.com/benekastah/neomake";
|
|
rev = "645c433b73f527badaac5e315f1ea16e7d34ef99";
|
|
sha256 = "0vprly61xhl7pqqp8nfr8vanl6ddq7kf5asqz4kpfdpgnbdxrdlc";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-hdevtools = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-hdevtools-2012-12-29";
|
|
src = fetchgit {
|
|
url = "git://github.com/bitc/vim-hdevtools";
|
|
rev = "474947c52ff9c93dd36f3c49de90bd9a78f0baa1";
|
|
sha256 = "1wwjb9m2l9q75d408jzq9bwv5i376bfgs6vc3ihwwlawcrmhjpxz";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-tmux-navigator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-tmux-navigator-2015-12-05";
|
|
src = fetchgit {
|
|
url = "git://github.com/christoomey/vim-tmux-navigator";
|
|
rev = "1298b71c420f1d0abceba3f35cc710131f84d73b";
|
|
sha256 = "1dafgclrq0243lz2v5dq4zc47yqp27kyc14p1l1nzka12kz65sdx";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
ctrlp-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "ctrlp-vim-2016-03-09";
|
|
src = fetchgit {
|
|
url = "git://github.com/ctrlpvim/ctrlp.vim";
|
|
rev = "0853394bee04fef74d96e536985765ea16c61b27";
|
|
sha256 = "1ylh978kh6c6hznp20db9dmx4q6xmgb98j6lj227blc2936pg5fx";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-jade = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-jade-2016-02-11";
|
|
src = fetchgit {
|
|
url = "git://github.com/digitaltoad/vim-jade";
|
|
rev = "0a7ec2edaa3f7fbe353f8fd5bf06d3c043d70c81";
|
|
sha256 = "0qlwbywnx6sl2xacdialpmg1d2wmjkdsdklz97k8086glkairs10";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
neco-ghc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "neco-ghc-2016-03-04";
|
|
src = fetchgit {
|
|
url = "git://github.com/eagletmt/neco-ghc";
|
|
rev = "df959a20468c2f455b599d1d21de8d2c4334c7aa";
|
|
sha256 = "16gnrg8sa5d3w1lg0bsx24cbvyb9pfgkm67rgnxr39g8b9h9pr09";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
YUNOcommit-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "YUNOcommit-vim-2014-11-26";
|
|
src = fetchgit {
|
|
url = "git://github.com/esneider/YUNOcommit.vim";
|
|
rev = "981082055a73ef076d7e27477874d2303153a448";
|
|
sha256 = "0mjc7fn405vcx1n7vadl98p5wgm6jxrlbdbkqgjq8f1m1ir81zab";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-go-2016-03-03";
|
|
src = fetchgit {
|
|
url = "git://github.com/fatih/vim-go";
|
|
rev = "fd5661a1e16a1fd41385d7011877bfa1f0a1353f";
|
|
sha256 = "1ps6hmzad0pmr8amk5knhrmc7giww7586pr2j36f6h60wzjvxgnn";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-colorschemes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-colorschemes-2016-03-09";
|
|
src = fetchgit {
|
|
url = "git://github.com/flazz/vim-colorschemes";
|
|
rev = "93593970393b0b14d9ee1ac963bea8db2ae30481";
|
|
sha256 = "1wq4pzfgd8scx8slmaz3l3ab9hsp286v6rydhw8ydp7wwi6ixpnr";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
idris-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "idris-vim-2016-01-29";
|
|
src = fetchgit {
|
|
url = "git://github.com/idris-hackers/idris-vim";
|
|
rev = "e1711749f5078f5a9fa53cd15a37627ea9d239f2";
|
|
sha256 = "0mbywk1mwbx3hjzrv7ypp5m800xjj08hxlfmd0piljg41xwkgk5q";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
calendar-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "calendar-vim-2016-03-06";
|
|
src = fetchgit {
|
|
url = "git://github.com/itchyny/calendar.vim";
|
|
rev = "b2bbf257fbcb71a7854daaa99aa8cd7f15709df5";
|
|
sha256 = "1w1w8s90l0hs65sp69a7w6wq63281lpksn459zy21i7zhflnl57l";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
thumbnail-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "thumbnail-vim-2016-02-16";
|
|
src = fetchgit {
|
|
url = "git://github.com/itchyny/thumbnail.vim";
|
|
rev = "3d404c89c7ea783c8386c2e1f03086373f764387";
|
|
sha256 = "02wz7832kyrmwsfpniahpn3b1q1nw5h29zq0l3kj7n19xh5ighm1";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-ipython = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-ipython-2015-06-23";
|
|
src = fetchgit {
|
|
url = "git://github.com/ivanov/vim-ipython";
|
|
rev = "42499f094b805b90b683afa5009cee99abd0bb75";
|
|
sha256 = "0b9g4ny32772x78k0nnarnm6arm3bj2nxj83sxaqaascvvnw6nbz";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-hier = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-hier-2011-08-27";
|
|
src = fetchgit {
|
|
url = "git://github.com/jceb/vim-hier";
|
|
rev = "0b8c365263551a67404ebd7e528c55e17c1d3de7";
|
|
sha256 = "118pd9sx1bl9vfr89xrf536hfx4l162a43a1qpwpkqxzb9a3ca7n";
|
|
};
|
|
dependencies = [];
|
|
buildInputs = [ vim ];
|
|
};
|
|
|
|
vim-buffergator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-buffergator-2016-01-21";
|
|
src = fetchgit {
|
|
url = "git://github.com/jeetsukumaran/vim-buffergator";
|
|
rev = "9a6a946a41bcf492dfe8da5eee4cc2ee3d55c77f";
|
|
sha256 = "1vng1hjgw3r6cpbdn54ba0prxfl08d9q1v9n65mskxs2zfzx3wvd";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
tslime-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "tslime-vim-2015-08-14";
|
|
src = fetchgit {
|
|
url = "git://github.com/jgdavey/tslime.vim";
|
|
rev = "4a8091956e331d7b1d4187a2883b720dfec7e9dd";
|
|
sha256 = "09csafrigp1ak566zxvhj71cdr6b6i3fplgncb288r051kw16cg6";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
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";
|
|
sha256 = "1hmxwwxfrk6c6g2mivazpl72s5vw1w5dvl10ivpn52lfw4xgqjxc";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-colorstepper = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-colorstepper-2016-01-28";
|
|
src = fetchgit {
|
|
url = "git://github.com/jonbri/vim-colorstepper";
|
|
rev = "f23ba0d995d41508a2dc9471cf31d3d01a4b5f05";
|
|
sha256 = "05ykxn0gmh8liz0zv5hb8df1ajggxp88izq3825m0yb3ma3k1jqs";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-xdebug-2012-08-15";
|
|
src = fetchgit {
|
|
url = "git://github.com/joonty/vim-xdebug";
|
|
rev = "a4980fa65f7f159780593ee37c178281691ba2c4";
|
|
sha256 = "1qh18r0sm4gh95sjbi2hnflvxdl4gk00jyy3n7z4i1gnx9ihxjqw";
|
|
};
|
|
dependencies = [];
|
|
postInstall = false;
|
|
};
|
|
|
|
limelight-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "limelight-vim-2015-08-19";
|
|
src = fetchgit {
|
|
url = "git://github.com/junegunn/limelight.vim";
|
|
rev = "153e3f7b78484eb4f5d69833ebf628f44b94996d";
|
|
sha256 = "1zdmivr5rn7lswsbgysdqpjv5kz1b97svx8xisw718aizn6ii9c5";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-peekaboo = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-peekaboo-2016-02-29";
|
|
src = fetchgit {
|
|
url = "git://github.com/junegunn/vim-peekaboo";
|
|
rev = "111c4bacbe5216022d56489c366bf4ce985506e9";
|
|
sha256 = "0pblcxb467n4nxkvmb8sl8765nmz17h74hs5dy5dnmaxiy55v0d9";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-eighties = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-eighties-2015-11-02";
|
|
src = fetchgit {
|
|
url = "git://github.com/justincampbell/vim-eighties";
|
|
rev = "62a9719df45fddd0456bf47420fc4768f9c8f5a5";
|
|
sha256 = "108yv5kwcfx7wjn3pqak86vsmcng0ha5s452pl75q3k580f6sf5k";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
latex-box = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "latex-box-2015-06-01";
|
|
src = fetchgit {
|
|
url = "git://github.com/latex-box-team/latex-box";
|
|
rev = "3c2901e12cb78bfb2be58ba4c62a488612550fe1";
|
|
sha256 = "10af319r8y94dnqv8js5fgdr2n482hgkl641hkd3i563159c9wla";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-jinja = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-jinja-2014-06-11";
|
|
src = fetchgit {
|
|
url = "git://github.com/lepture/vim-jinja";
|
|
rev = "4412484b410b15caecd71f2e52758b2a90ea124d";
|
|
sha256 = "1z5ya953nn7233jjjs0ay61x5hfrfddx9xz31grq52cfd0ipy335";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vimtex-2016-03-08";
|
|
src = fetchgit {
|
|
url = "git://github.com/lervag/vimtex";
|
|
rev = "4ecf478faf24158839e0b6fcf4fd301a9128103e";
|
|
sha256 = "04vb121c109h02393z7hr1kiy2bc02aa8lqfwwh57wx7mzxjsfs5";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-easymotion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-easymotion-2016-02-15";
|
|
src = fetchgit {
|
|
url = "git://github.com/lokaltog/vim-easymotion";
|
|
rev = "649120e90e92bc2ae5361693fa1e4dd2d02c1822";
|
|
sha256 = "1anh1yflahbsmw3zmgm9xzvpz3c4jh1crk695a6p2sjvf3rr68av";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-xkbswitch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-xkbswitch-2016-01-31";
|
|
src = fetchgit {
|
|
url = "git://github.com/lyokha/vim-xkbswitch";
|
|
rev = "89fa3fc16251f2e97281d29ade3ee022ba285003";
|
|
sha256 = "16wahaz9d6jyqlvmsn764xqircrwaap3pn4fbgmly7vfmdvq4p8b";
|
|
};
|
|
dependencies = [];
|
|
patchPhase = ''
|
|
substituteInPlace plugin/xkbswitch.vim \
|
|
--replace /usr/local/lib/libxkbswitch.so ${xkb_switch}/lib/libxkbswitch.so
|
|
'';
|
|
buildInputs = [ xkb_switch ];
|
|
};
|
|
|
|
vim-startify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-startify-2016-03-07";
|
|
src = fetchgit {
|
|
url = "git://github.com/mhinz/vim-startify";
|
|
rev = "193e0802ecde996a00ed58248d17a0e99ab077af";
|
|
sha256 = "1zkqxhvc1cvsdgk5il38fxjcgds3x1fql2fjfn8v72rna1075xks";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
lushtags = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "lushtags-2015-06-06";
|
|
src = fetchgit {
|
|
url = "git://github.com/mkasa/lushtags";
|
|
rev = "3d7229b07b47ab2fc188d7db63b33dfcd63a1802";
|
|
sha256 = "1f87zjs9d03h3g4r93ad4asdyx5jsx7nyzf5al72s855adxypdpm";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
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";
|
|
sha256 = "1xm5ark2mwphznv3xsyzgcldnr52i5jzk1pfqdh0080j07aama8j";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
shabadou-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "shabadou-vim-2014-07-27";
|
|
src = fetchgit {
|
|
url = "git://github.com/osyo-manga/shabadou.vim";
|
|
rev = "c5af30bb0c028d53cfd89e00cab636c844034a9a";
|
|
sha256 = "1rjdbjsyhs514cqysrr4cr3qva6v1nixjwdmg3j1jlkjbs5glbir";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-watchdogs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-watchdogs-2016-01-13";
|
|
src = fetchgit {
|
|
url = "git://github.com/osyo-manga/vim-watchdogs";
|
|
rev = "ebcf3df39007aa5d65910f44eb20c9caea9007df";
|
|
sha256 = "0b0sicq8vgil9nm6vnp3k1vlsc6na54cy95pb68w4bj7mscd0q9j";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-racer-2016-03-09";
|
|
src = fetchgit {
|
|
url = "git://github.com/racer-rust/vim-racer";
|
|
rev = "263d3f48ff96c0e8f347f660f97edca13ea36405";
|
|
sha256 = "0aak5jhzps173k52ql6isdwhjhmp69bnzzjrqjqnriyy0xay2d38";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "neocomplete-vim-2016-03-01";
|
|
src = fetchgit {
|
|
url = "git://github.com/shougo/neocomplete.vim";
|
|
rev = "a21f22f19d6dbd0fb0d58b555c186138c4c9cfc9";
|
|
sha256 = "1kqg747s3pw6gc8g6h3s3bcsc3vjn00gav29zms6hpywiz6x931x";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "neosnippet-snippets-2016-03-05";
|
|
src = fetchgit {
|
|
url = "git://github.com/shougo/neosnippet-snippets";
|
|
rev = "65810a15db3f09384d62ddcd42d9f97dcb96dde9";
|
|
sha256 = "1zqw8mkljzq5mknridxp77gwfbhn2wrz8czhjlgg8k4q8alyziqp";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "neosnippet-vim-2016-03-05";
|
|
src = fetchgit {
|
|
url = "git://github.com/shougo/neosnippet.vim";
|
|
rev = "bcb7620a852a542d0940a2ff691deb9da9309f07";
|
|
sha256 = "06f6flbv4zbdckjxchfwhm36syma6bzywassrf7hachnsx0s3ys3";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "unite-vim-2016-03-06";
|
|
src = fetchgit {
|
|
url = "git://github.com/shougo/unite.vim";
|
|
rev = "c9d2ced6b993653a7ebbc572039f8d03ba2b997f";
|
|
sha256 = "1b444a6zls7n321s03cljzv35id2rhp3aflpngyxk6l3j3ml2shx";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vimproc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vimproc-vim-2016-03-09";
|
|
src = fetchgit {
|
|
url = "git://github.com/shougo/vimproc.vim";
|
|
rev = "3ab0a236e65b277670266c1187da9a49064c1500";
|
|
sha256 = "0vwrlds6dhvrq2sv2g2041cw1jx3c3snsv5pnlnma3nflxpxvry0";
|
|
};
|
|
dependencies = [];
|
|
buildInputs = [ which ];
|
|
|
|
buildPhase = ''
|
|
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
|
|
make -f make_unix.mak
|
|
'';
|
|
};
|
|
|
|
vimshell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vimshell-vim-2016-03-05";
|
|
src = fetchgit {
|
|
url = "git://github.com/shougo/vimshell.vim";
|
|
rev = "ce19571a937c9cfa9d5c993c9c06c1457376759e";
|
|
sha256 = "03fvzi4dlg7irljywy1kikkvq4sd4rnvvf8ji2pv68dl8s3zwmr2";
|
|
};
|
|
dependencies = [ "vimproc-vim" ];
|
|
};
|
|
|
|
gundo-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "gundo-vim-2016-01-19";
|
|
src = fetchgit {
|
|
url = "git://github.com/sjl/gundo.vim";
|
|
rev = "e7fe41024ace9047eee610f23311d44fd9d917c0";
|
|
sha256 = "1kdz2qr4z2k2dz6p0jr6y5zwi7n7k1g3m2k52iz03dicvmb5d59h";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-hardtime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-hardtime-2016-02-17";
|
|
src = fetchgit {
|
|
url = "git://github.com/takac/vim-hardtime";
|
|
rev = "7c6a6ec70a1f8a1f8c3ccd21041f84375eb4c160";
|
|
sha256 = "129pwjb3sjz4bffa5cysmk4gy5xd22na4i84ackwx77sw7n6y9kv";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-quickrun-2016-01-27";
|
|
src = fetchgit {
|
|
url = "git://github.com/thinca/vim-quickrun";
|
|
rev = "ac9f4be0698dffb30ebdf284f8ba5abbaab5eaca";
|
|
sha256 = "1g8s4h2a9iiq7d0j99ajqkl562m1w0vwa73riiz7axdmjz34vjwl";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
molokai = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "molokai-2015-11-11";
|
|
src = fetchgit {
|
|
url = "git://github.com/tomasr/molokai";
|
|
rev = "c67bdfcdb31415aa0ade7f8c003261700a885476";
|
|
sha256 = "1piszjr5kyw43ac1f0jh9z88g824xknshrkchbys9qxlz7pd831s";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-eunuch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-eunuch-2016-02-07";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-eunuch";
|
|
rev = "d02b2d0404134e6cae2708069d6888110d3c2272";
|
|
sha256 = "07xbrx5wrcrv19yaxmnbl7h2qz80f04kmlsz60pag84pyqlina0h";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
hasksyn = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "hasksyn-2014-09-03";
|
|
src = fetchgit {
|
|
url = "git://github.com/travitch/hasksyn";
|
|
rev = "c434040bf13a17ca20a551223021b3ace7e453b9";
|
|
sha256 = "0c8r72qw7r7sd2cww07x6n2sp5cwkgamjf8khcdh39zcia93b9xi";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-haskellconceal = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-haskellconceal-2014-10-28";
|
|
src = fetchgit {
|
|
url = "git://github.com/twinside/vim-haskellconceal";
|
|
rev = "f73c5dd660b7009a050b131783d7c17b4954e4d9";
|
|
sha256 = "1a1v0m3qj0gian3mp5xynf2ghscr3xaid37b0wi38bb4f2qrigqy";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "youcompleteme-2016-03-10";
|
|
src = fetchgit {
|
|
url = "git://github.com/valloric/youcompleteme";
|
|
rev = "f44435b88ec98156d17869aa67ad15f38cfecbf3";
|
|
sha256 = "1y50ilyfwj6rvpvg50iq418maxvsfs54i202v7x0lfs5hmvcb4hi";
|
|
};
|
|
dependencies = [];
|
|
buildInputs = [
|
|
python go cmake
|
|
(if stdenv.isDarwin then llvmPackages.clang else llvmPackages.clang-unwrapped)
|
|
llvmPackages.llvm
|
|
] ++ stdenv.lib.optional stdenv.isDarwin Cocoa;
|
|
|
|
buildPhase = ''
|
|
patchShebangs .
|
|
substituteInPlace plugin/youcompleteme.vim \
|
|
--replace "'ycm_path_to_python_interpreter', '''" "'ycm_path_to_python_interpreter', '${python}/bin/python'"
|
|
|
|
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
|
|
make ycm_core -j''${NIX_BUILD_CORES} -l''${NIX_BUILD_CORES}}
|
|
${python}/bin/python ../third_party/ycmd/build.py --gocode-completer --clang-completer --system-libclang
|
|
popd
|
|
'';
|
|
|
|
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];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
};
|
|
|
|
vim-pandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-pandoc-2016-02-12";
|
|
src = fetchgit {
|
|
url = "git://github.com/vim-pandoc/vim-pandoc";
|
|
rev = "ff604abdf48e98dd4bd0c441429b9f8f9413134c";
|
|
sha256 = "1c9m1p9zyxqxcrmpn24lkhx1jr6mx51qdvp5wj1vkqwbs811ps26";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-pandoc-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-pandoc-syntax-2016-03-08";
|
|
src = fetchgit {
|
|
url = "git://github.com/vim-pandoc/vim-pandoc-syntax";
|
|
rev = "a7783e5834008c4bec3f38b78bd2e48e113c9d4c";
|
|
sha256 = "0hzgnyjscljylgv4ss5w1hfff1mdl4kdpl0gm7yrl964rlifcgzg";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
Colour-Sampler-Pack = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Colour-Sampler-Pack-2012-11-29";
|
|
src = fetchgit {
|
|
url = "git://github.com/vim-scripts/Colour-Sampler-Pack";
|
|
rev = "05cded87b2ef29aaa9e930230bb88e23abff4441";
|
|
sha256 = "03v2r18sfgs0xbgy9p56pxfdg0lsk6m7wyr5hw63wm1nzpwiipg3";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
a-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "a-vim-2010-11-06";
|
|
src = fetchgit {
|
|
url = "git://github.com/vim-scripts/a.vim";
|
|
rev = "2cbe946206ec622d9d8cf2c99317f204c4d41885";
|
|
sha256 = "0h62v9z5bh9xmaq22pqdb3z79i84a5rknqm68mjpy7nq7s3q42fa";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "align-2012-08-07";
|
|
src = fetchgit {
|
|
url = "git://github.com/vim-scripts/align";
|
|
rev = "787662fe90cd057942bc5b682fd70c87e1a9dd77";
|
|
sha256 = "0acacr572kfh7jvavbw61q5pkwrpi1albgancma063rpax1pddgp";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
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";
|
|
sha256 = "0pybhsg9k9252d4ifdc4gsar8lkmfzbvs6xkzqq1m6f35l9wqk09";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
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";
|
|
sha256 = "1lzy2cq4jcrsqyxlnbnd0y6j4mabm09bi7q22lf6vinqlb84w7sp";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
tabmerge = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "tabmerge-2010-10-17";
|
|
src = fetchgit {
|
|
url = "git://github.com/vim-scripts/tabmerge";
|
|
rev = "074e5f06f26e7108a0570071a0f938a821768c06";
|
|
sha256 = "0prkyza1n49cdaslcr57w8zv15vw78mlqbzib2xipmawzjq02idq";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
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";
|
|
sha256 = "01fdvfwdfqn5xi88lfanb4lb6jmn1ma6wq6d9jj2x7qamdbpvsrg";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-wakatime-2016-03-06";
|
|
src = fetchgit {
|
|
url = "git://github.com/wakatime/vim-wakatime";
|
|
rev = "115b02198233745c86ef453b5cf5f8fc2d493ae0";
|
|
sha256 = "1jbwjg3fk59dkz6f7x8cyqgxh1cg0a3qy3aj7abg4k2aip67101y";
|
|
};
|
|
dependencies = [];
|
|
buildInputs = [ python ];
|
|
};
|
|
|
|
command-t = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "command-t-2016-03-09";
|
|
src = fetchgit {
|
|
url = "git://github.com/wincent/command-t";
|
|
rev = "9740c9cd318d4e004f330358c76a27948dc5779e";
|
|
sha256 = "0wb6wabd758xzh722d2vs3hrx77gf2sh24g9fnrzj4hwwglrld1s";
|
|
};
|
|
dependencies = [];
|
|
buildInputs = [ perl ruby ];
|
|
buildPhase = ''
|
|
pushd ruby/command-t
|
|
ruby extconf.rb
|
|
make
|
|
popd
|
|
'';
|
|
};
|
|
|
|
goyo = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "goyo-2016-02-15";
|
|
src = fetchgit {
|
|
url = "git://github.com/junegunn/goyo.vim";
|
|
rev = "cb697998cce4d5a50fb1749310147ae16b0d70e6";
|
|
sha256 = "0sbyk5byfsf10n93dk043ysyxfm43rabiw766pb1gkng5hdqypd0";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
matchit-zip = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "matchit-zip";
|
|
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";
|
|
};
|
|
|
|
unpackPhase = ''
|
|
(
|
|
sourceRoot=d
|
|
mkdir $sourceRoot; cd $sourceRoot;
|
|
unzip $src
|
|
)
|
|
'';
|
|
};
|
|
|
|
pathogen = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "pathogen-2016-01-26";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-pathogen";
|
|
rev = "8c91196cfd9c8fe619f35fac6f2ac81be10677f8";
|
|
sha256 = "17d1903spczg2rk0qzg94vvq41dwhmnxwajqgzcx4lmf606cfspi";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
quickfixstatus = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "quickfixstatus-2011-09-02";
|
|
src = fetchgit {
|
|
url = "git://github.com/dannyob/quickfixstatus";
|
|
rev = "fd3875b914fc51bbefefa8c4995588c088163053";
|
|
sha256 = "16vxhvyxq51y7wnx0c1fmdi2yb6kfr1pxijq65gxj8qwvbak2s3v";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
rainbow_parentheses = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "rainbow_parentheses-2013-03-04";
|
|
src = fetchgit {
|
|
url = "git://github.com/kien/rainbow_parentheses.vim";
|
|
rev = "eb8baa5428bde10ecc1cb14eed1d6e16f5f24695";
|
|
sha256 = "1qw84imlhq4654mxazj7j3sp5g1j3yjxi496i08iix06dm15m5s7";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
rust = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "rust-2015-01-29";
|
|
src = fetchgit {
|
|
url = "git://github.com/wting/rust.vim";
|
|
rev = "2450ecf3091cc7c2711ca9f00eae8e3bedd04376";
|
|
sha256 = "1vn4ynvx1pbgvq9ggn21aaazz8jpsh9l6r3n3sd0y46n0qn8nblx";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
sensible = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "sensible-2016-02-09";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-sensible";
|
|
rev = "2fb074e84169e177045e8bdb6ceb7eded3a80e8f";
|
|
sha256 = "067ccar0adk2rx96ci26ykdi6bk0p4wnsd10la088lxdfva00m90";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
sleuth = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "sleuth-2015-06-07";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-sleuth";
|
|
rev = "a17462708aa40a7fc0afd4effa559087d8a2c908";
|
|
sha256 = "09b01ywp0yd3lajs7gzv17qvjwbffdh6k014ws92b50cwv2vgx3j";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
snipmate = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "snipmate-2016-03-01";
|
|
src = fetchgit {
|
|
url = "git://github.com/garbas/vim-snipmate";
|
|
rev = "71250b0ef2b03b40ded5e93f4abe66fc2ee4aa75";
|
|
sha256 = "0nzpk9h31m73anb16hj19mp8q9ccq8aqgck482alxapgf1g0mzli";
|
|
};
|
|
dependencies = ["vim-addon-mw-utils" "tlib"];
|
|
|
|
};
|
|
|
|
sourcemap = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "sourcemap-2012-09-19";
|
|
src = fetchgit {
|
|
url = "git://github.com/chikatoike/sourcemap.vim";
|
|
rev = "0dd82d40faea2fdb0771067f46c01deb41610ba1";
|
|
sha256 = "1gcgnynallz420911fdfm0ccbv3zs78p69nnh2ls1r4vlfp7g350";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
surround = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "surround-2015-08-07";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-surround";
|
|
rev = "2d05440ad23f97a7874ebd9b5de3a0e65d25d85c";
|
|
sha256 = "0l5kvn2b1v2h90c02ymgsv88p89d0hzsbr6zwf0p2x2f72xjqdz5";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
table-mode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "table-mode-2015-12-03";
|
|
src = fetchgit {
|
|
url = "git://github.com/dhruvasagar/vim-table-mode";
|
|
rev = "2ab64777a5b81e240810999eb6e7dc65e1de5461";
|
|
sha256 = "1qd80k0xwvd45kn3cb9ripzf8xhmgs32247lgh46ysgb18ygdbv4";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
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
|
|
'';
|
|
};
|
|
|
|
tlib = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "tlib-2016-01-26";
|
|
src = fetchgit {
|
|
url = "git://github.com/tomtom/tlib_vim";
|
|
rev = "9734d8d9e4f7b7b91272123463a62759aef31556";
|
|
sha256 = "19dqzxy1v3wg1n8b93wjds311w3lw70g49svv59sr070s7bwl6z9";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "undotree-2016-02-23";
|
|
src = fetchgit {
|
|
url = "git://github.com/mbbill/undotree";
|
|
rev = "e5a01b2eb94afd256a96cac07ba2981a55dd9665";
|
|
sha256 = "1dga7yhk5gh980w2qlf764i9f2mba4ij9habd86i9mlsh3wdqnrm";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
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";
|
|
sha256 = "10v3vxgrlfdd34s5kvh4si985gpygv804fygdwy27rr93xxfphyj";
|
|
};
|
|
dependencies = ["vim-addon-mw-utils" "tlib"];
|
|
|
|
};
|
|
|
|
vim-addon-async = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-async-2013-10-18";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-async";
|
|
rev = "dadc96e188f1cdacbac62129eb29a1eacfed792c";
|
|
sha256 = "01sxg88578drmwxpphpj7r7mb7l0wfly4509s85r99cc3bi43y97";
|
|
};
|
|
dependencies = ["vim-addon-signs"];
|
|
|
|
};
|
|
|
|
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";
|
|
sha256 = "080wfsid1iq5b9lqapg0wis5642c69sf9nh9rhs79qapl6x3w8h6";
|
|
};
|
|
dependencies = ["vim-addon-mw-utils"];
|
|
|
|
};
|
|
|
|
vim-addon-commenting = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-commenting-2013-06-10";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-commenting";
|
|
rev = "b7cf748ac1c9bf555cbd347589e3b7196030d20b";
|
|
sha256 = "0glvpq7i8s9jdi6lvpl8hpyd7mrhq14kdkn94i51n2lzcvvdbmsa";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-addon-completion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-completion-2015-02-10";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-completion";
|
|
rev = "021c449a5ce1ce4ac0af5955e05b0279c1cc0e75";
|
|
sha256 = "1sm00gs0h96kh7h64gjkyniw07495vqylh157m2f9xzd953lg6ln";
|
|
};
|
|
dependencies = ["tlib"];
|
|
|
|
};
|
|
|
|
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";
|
|
sha256 = "159zqm69fxbxcv3b2y99g57bf20qrzsijcvb5rzy2njxah3049m1";
|
|
};
|
|
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";
|
|
sha256 = "1skq43y7laq2ric7bqh9abx9mxix5k6xzcs4qnwhsqwskp4qlr9l";
|
|
};
|
|
dependencies = ["tlib"];
|
|
|
|
};
|
|
|
|
vim-addon-local-vimrc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-local-vimrc-2015-03-19";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-local-vimrc";
|
|
rev = "6a27f95b35befa70cd0d049329cd0920566c764b";
|
|
sha256 = "0n8lwl1gyak149p7jpgm0qbmfj8hcg8hirx3dxdhizw0yc47ws7h";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-addon-manager = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-manager-2016-02-07";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-manager";
|
|
rev = "872f9302cf0eb8e9cb6259ea4f329d2265f9e32d";
|
|
sha256 = "0rl6sy1gfjsfr1hg2ilhhxppifvjfqn815kh27b3ikcy82rp7sb0";
|
|
};
|
|
dependencies = [];
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin Cocoa;
|
|
};
|
|
|
|
vim-addon-mru = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-mru-2013-08-08";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-mru";
|
|
rev = "e41e39bd9d1bf78ccfd8d5e1bc05ae5e1026c2bb";
|
|
sha256 = "0q6rxr9nrp63kidr3m3c2z5sda4g813pzshg0scxkjr8dxwhzdqm";
|
|
};
|
|
dependencies = ["vim-addon-other" "vim-addon-mw-utils"];
|
|
|
|
};
|
|
|
|
vim-addon-mw-utils = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-mw-utils-2012-11-05";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-mw-utils";
|
|
rev = "0c5612fa31ee434ba055e21c76f456244b3b5109";
|
|
sha256 = "075r4a73vv6hcrsfznac32nicdk0x7lvxx4fwmii03q5b4dns6sf";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-addon-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-nix-2015-03-10";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-nix";
|
|
rev = "2aed79ba5d8c5e6abd102de77e55e242f61b17f1";
|
|
sha256 = "1qipxzn79nbmjzppa0r59796r56xz5g88jm66fjpqndndhn6wchf";
|
|
};
|
|
dependencies = ["vim-addon-completion" "vim-addon-goto-thing-at-cursor" "vim-addon-errorformats" "vim-addon-actions" "vim-addon-mw-utils" "tlib"];
|
|
|
|
};
|
|
|
|
vim-addon-other = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-other-2014-07-15";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-other";
|
|
rev = "f78720c9cb5bf871cabb13c7cbf94378dbf0163b";
|
|
sha256 = "06sdjnyp2hqs0kia2hzflyxwiwpp14mkrhhm4l3k2q2pnzj2gw23";
|
|
};
|
|
dependencies = ["vim-addon-actions" "vim-addon-mw-utils"];
|
|
|
|
};
|
|
|
|
vim-addon-php-manual = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-php-manual-2015-01-01";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-php-manual";
|
|
rev = "5f9810dd1f6e9f36a45f637ae6260ccff09256ff";
|
|
sha256 = "1kc67f12wccqdza069b75lpcbqp4kv4r23i4mfz0ihwif5mfnhir";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
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";
|
|
sha256 = "1f4gk984760cbkkwl9isqwab63ghny61h18nfh313maqwwr3mh59";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-addon-sql = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-sql-2014-01-18";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-sql";
|
|
rev = "05b8a0c211f1ae4c515c64e91dec555cdf20d90b";
|
|
sha256 = "1hjpx5s1vn8v7y73gis408jdy8vjivhag2ycp8lk5870jkk4lcx1";
|
|
};
|
|
dependencies = ["vim-addon-completion" "vim-addon-background-cmd" "tlib"];
|
|
|
|
};
|
|
|
|
vim-addon-syntax-checker = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-syntax-checker-2013-07-12";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-syntax-checker";
|
|
rev = "8eb7217e636ca717d4de5cd03cc0180c5b66ae77";
|
|
sha256 = "0gcvb922w4jsi203ygbnij9xhmgc6knj9b3ivw3m0fv5ckk4iw5f";
|
|
};
|
|
dependencies = ["vim-addon-mw-utils" "tlib"];
|
|
|
|
};
|
|
|
|
vim-addon-toggle-buffer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-toggle-buffer-2012-01-13";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-toggle-buffer";
|
|
rev = "a1b38b9c5709cba666ed2d84ef06548f675c6b0b";
|
|
sha256 = "0mb0vyr5rr0ywk26l9cwcplpfzsqdwv49d2nzdx1g685zvn6c8b7";
|
|
};
|
|
dependencies = ["vim-addon-mw-utils" "tlib"];
|
|
|
|
};
|
|
|
|
vim-addon-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-xdebug-2014-08-29";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-xdebug";
|
|
rev = "45f26407305b4ce6f8f5f37d2b5e6e4354104172";
|
|
sha256 = "1vv4jha79sw8yxzl9aygr44khqi8yrmz9ysvs95wjwk7yg5g4yqa";
|
|
};
|
|
dependencies = ["WebAPI" "vim-addon-mw-utils" "vim-addon-signs" "vim-addon-async"];
|
|
|
|
};
|
|
|
|
vim-airline = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-airline-2016-03-08";
|
|
src = fetchgit {
|
|
url = "git://github.com/bling/vim-airline";
|
|
rev = "4395405628534b2c7f9c4be2bdba03315241393c";
|
|
sha256 = "1fgq9jjdlmrak663iw7xbx348l7zz5jsx477n7l3s338wj4h9bsb";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-airline-themes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-airline-themes-2016-02-24";
|
|
src = fetchgit {
|
|
url = "git://github.com/vim-airline/vim-airline-themes";
|
|
rev = "13bad30d4ee3892cae755c83433ee85fbc96d028";
|
|
sha256 = "0w36ani4r2v58pd0fcqv12j0hjd97g2q78zici1a72njvwp9qhgj";
|
|
};
|
|
dependencies = [ "vim-airline" ];
|
|
};
|
|
|
|
vim-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-coffee-script-2015-04-20";
|
|
src = fetchgit {
|
|
url = "git://github.com/kchmck/vim-coffee-script";
|
|
rev = "32fe889b8cafd3a4921ef8e6485156453ff58c42";
|
|
sha256 = "14464xyjiw58n785xrkyd5qrinz2gb0p4yhxh6b9r5698qjjn5np";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-easy-align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-easy-align-2016-03-06";
|
|
src = fetchgit {
|
|
url = "git://github.com/junegunn/vim-easy-align";
|
|
rev = "0cb6b98fc155717b0a56c110551ac57d1d951ddb";
|
|
sha256 = "089c4grk24albishgxdskb1zsvxbzlp2yq1baf0vy6cryxwm8ykq";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-gista = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-gista-2016-03-02";
|
|
src = fetchgit {
|
|
url = "git://github.com/lambdalisue/vim-gista";
|
|
rev = "9b6719242c0dfbb8b01a49b8765fc8dfeb022118";
|
|
sha256 = "0kl1f2w8pvmx3jkiwq2ygrdq9yccxnh9kl0fwjwjp5gqhhw0d2vp";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-gitgutter-2016-03-07";
|
|
src = fetchgit {
|
|
url = "git://github.com/airblade/vim-gitgutter";
|
|
rev = "28353bd0609ae7b8c7e01c70dce31700d8c6e654";
|
|
sha256 = "04dmbqpmk3da3wnklzv3ws0r3fjd55yc8z2j5f695x60f2cab8qz";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-iced-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-iced-coffee-script-2013-12-27";
|
|
src = fetchgit {
|
|
url = "git://github.com/noc7c9/vim-iced-coffee-script";
|
|
rev = "e42e0775fa4b1f8840c55cd36ac3d1cedbc1dea2";
|
|
sha256 = "14yfirny359rlrr082il2ys3hxiyrbbk794rdxrs2lasjy8rb1f7";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-latex-live-preview = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-latex-live-preview-2015-05-11";
|
|
src = fetchgit {
|
|
url = "git://github.com/xuhdev/vim-latex-live-preview";
|
|
rev = "7695dd4ebddb735bec632d468e2202d070029cb8";
|
|
sha256 = "1j5z0n5j6gk25hh99pb0xyhqv9yjbjnmpqz6vig7zc4q9alf4l9m";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-multiple-cursors = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-multiple-cursors-2016-01-28";
|
|
src = fetchgit {
|
|
url = "git://github.com/terryma/vim-multiple-cursors";
|
|
rev = "47c9e3fb11a202a9a2fa1d591ec990a41e4221c4";
|
|
sha256 = "006wj5jikdkz9zilhy9q55hr50v6x34z27jpn0dv9shgaj8xf62s";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-signature = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-signature-2016-03-03";
|
|
src = fetchgit {
|
|
url = "git://github.com/kshenoy/vim-signature";
|
|
rev = "85b22e21ad4276c54d557ac640e1d32b2b4e6b5e";
|
|
sha256 = "1rygsgahcf9lbi0ddk3f2srda3mlmhnwpal842bms60crj9jimxk";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-signify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-signify-2016-03-03";
|
|
src = fetchgit {
|
|
url = "git://github.com/mhinz/vim-signify";
|
|
rev = "a02c8793bfda7ddd386587c64246bec6aa78ff62";
|
|
sha256 = "0lv37z8zcwz3fvlc6qjg8nbmgqkall776w46ifps51pn03qwp91d";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-snippets-2016-03-09";
|
|
src = fetchgit {
|
|
url = "git://github.com/honza/vim-snippets";
|
|
rev = "743be1a6e0c93e84a7ae6bc7066bf6ed358b5fbe";
|
|
sha256 = "0p0ld2m0mka5kq324vs0k3m7ffpvjg7kjh5vdqz9cm0ajmw3aa8p";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim-webdevicons = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-webdevicons-2016-03-04";
|
|
src = fetchgit {
|
|
url = "git://github.com/ryanoasis/vim-devicons";
|
|
rev = "f8841e2bd46e9fed95c0389190e3ef1b6ba77440";
|
|
sha256 = "0f0fxn7pck9k642sgmv0y68qi0hqnw46pl919c2sq542da7g4k0p";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vim2hs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim2hs-2014-04-16";
|
|
src = fetchgit {
|
|
url = "git://github.com/dag/vim2hs";
|
|
rev = "f2afd55704bfe0a2d66e6b270d247e9b8a7b1664";
|
|
sha256 = "1c75nxk1vk8hq514wx1zm9i5d3qdpd65mv4v4gr50kmvjn2waps8";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vimwiki = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vimwiki-2015-12-10";
|
|
src = fetchgit {
|
|
url = "git://github.com/vimwiki/vimwiki";
|
|
rev = "3bd3d9b86036b21aecd69f0a1e572643d626c280";
|
|
sha256 = "1j6mmdzpg7jfyv6fvfxb25j71pzf1il6dmzz86h1f3dgh4waw43s";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vinegar = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vinegar-2016-01-30";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-vinegar";
|
|
rev = "75fc3824bc09053f22735d6726c5cfd614c15642";
|
|
sha256 = "19jl854wylmfdr9k4bfyffkz8bl4vpx1znnxzx0qj7cz2s3i9z0r";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
vundle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vundle-2016-02-26";
|
|
src = fetchgit {
|
|
url = "git://github.com/gmarik/vundle";
|
|
rev = "4984767509e3d05ca051e253c8a8b37de784be45";
|
|
sha256 = "0n2k3ip81yfx00ch45nqiwayhz8qxmwg5s34a4k5snapzcxcm2fn";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
|
|
lightline-vim = buildVimPluginFrom2Nix {
|
|
name = "lightline-2016-02-10";
|
|
src = fetchgit {
|
|
url = "git://github.com/itchyny/lightline.vim";
|
|
rev = "e6a43f98fab1ee2e373bd0b670803222607ed123";
|
|
sha256 = "abb836d728a8f674f3aa71c4936798c9be02bb352ca0e6e5f5b262886622ac3b";
|
|
};
|
|
dependencies = [];
|
|
};
|
|
|
|
Spacegray-vim = buildVimPluginFrom2Nix {
|
|
name = "spacegray-2015-04-05";
|
|
src = fetchgit {
|
|
url = "git://github.com/ajh17/Spacegray.vim";
|
|
rev = "1c10d0da045609910e8fb03b33c043bbcff35d9e";
|
|
sha256 = "bced8987539ca42f84350b90e2570a226dad66e8061b90b79a41d51f9fb4b4b5";
|
|
};
|
|
dependencies = [];
|
|
};
|
|
|
|
}
|