nixpkgs/pkgs/misc/vim-plugins/default.nix

2031 lines
64 KiB
Nix
Raw Normal View History

experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
# TODO check that no license information gets lost
2016-09-17 08:45:34 +00:00
{ fetchurl, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip
, which, fetchgit, llvmPackages
, xkb_switch, rustracerd, fzf
2016-03-04 13:10:17 +00:00
, Cocoa ? null
}:
let
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
inherit (vimUtils.override {inherit vim;}) rtpPath addRtp buildVimPlugin
buildVimPluginFrom2Nix vimHelpTags;
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
in
2015-06-01 10:14:47 +00:00
# TL;DR
# Add your plugin to ./vim-plugin-names
2016-08-29 12:40:12 +00:00
# Regenerate via `nix-build -Q -A vimPlugins.pluginnames2nix; ./result/bin/vim-plugin-names-to-nix`
# Copy the generated expression(s) into this file.
# If plugin is complicated then make changes to ./vim2nix/additional-nix-code
2015-06-01 10:14:47 +00: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
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
rec {
2015-06-01 10:14:47 +00: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";
namefiles = [./vim-plugin-names];
};
2015-06-01 10:14:47 +00:00
# Section I
vim-addon-vim2nix = vim2nix;
vim2nix = buildVimPluginFrom2Nix { # use it to update plugins
name = "vim2nix";
src = ./vim2nix;
dependencies = ["vim-addon-manager"];
};
2015-06-01 10:14:47 +00:00
# Section II
# Update with vimUtils.vimPlugins.pluginnames2Nix command
# aliasess
2015-06-15 22:43:54 +00:00
"sourcemap.vim" = sourcemap;
Colour_Sampler_Pack = Colour-Sampler-Pack;
YouCompleteMe = youcompleteme;
2015-06-01 10:14:47 +00:00
airline = vim-airline;
alternative = a-vim; # backwards compat, added 2014-10-21
2015-06-15 22:43:54 +00:00
calendar = calendar-vim;
2015-06-01 10:14:47 +00: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 02:10:53 +00:00
css_color_5056 = vim-css-color;
2015-10-03 08:38:55 +00:00
ctrlp = ctrlp-vim;
2015-06-01 10:14:47 +00: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 09:36:09 +00:00
gundo = gundo-vim;
2015-10-03 08:38:55 +00:00
Gundo = gundo-vim; # backwards compat, added 2015-10-03
2015-06-01 10:14:47 +00:00
haskellConceal = haskellconceal; # backwards compat, added 2014-10-18
haskellconceal = vim-haskellconceal;
haskellConcealPlus = vim-haskellConcealPlus;
2015-06-01 10:14:47 +00:00
hier = vim-hier;
hlint-refactor = hlint-refactor-vim;
2015-06-15 22:43:54 +00:00
hoogle = Hoogle;
2015-06-01 10:14:47 +00:00
ipython = vim-ipython;
latex-live-preview = vim-latex-live-preview;
2015-07-20 19:58:56 +00:00
multiple-cursors = vim-multiple-cursors;
2015-06-01 10:14:47 +00:00
necoGhc = neco-ghc; # backwards compat, added 2014-10-18
2015-06-15 22:43:54 +00:00
neocomplete = neocomplete-vim;
neosnippet = neosnippet-vim;
2015-06-01 10:14:47 +00:00
nerdcommenter = The_NERD_Commenter;
nerdtree = The_NERD_tree;
2016-09-17 08:44:56 +00:00
polyglot = vim-polyglot;
2015-06-01 10:14:47 +00:00
quickrun = vim-quickrun;
2016-09-17 08:44:56 +00:00
repeat = vim-repeat;
2015-06-01 10:14:47 +00:00
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-15 22:43:54 +00:00
thumbnail = thumbnail-vim;
2015-06-01 10:14:47 +00:00
tmux-navigator = vim-tmux-navigator;
tmuxNavigator = tmux-navigator; # backwards compat, added 2014-10-18
2015-06-15 22:43:54 +00:00
tslime = tslime-vim;
2016-09-17 08:44:56 +00:00
unite = unite-vim;
2015-06-15 22:43:54 +00:00
vimproc = vimproc-vim;
vimshell = vimshell-vim;
2015-06-01 10:14:47 +00:00
watchdogs = vim-watchdogs;
webapi-vim = WebAPI;
wombat256 = wombat256-vim; # backwards compat, added 2015-7-8
2015-06-01 10:14:47 +00:00
yankring = YankRing;
2016-06-04 06:14:36 +00:00
fzfWrapper = buildVimPluginFrom2Nix {
name = fzf.name;
src = fzf.src;
dependencies = [];
};
# --- generated packages bellow this line ---
2015-10-03 08:38:55 +00:00
CSApprox = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "CSApprox-2013-07-26";
src = fetchgit {
url = "git://github.com/godlygeek/csapprox";
rev = "7981dac51d8b6776985aa08cb7b5ee98ea7f2ddd";
sha256 = "08g4x6nnd6hkgm2daa5ihhz75pcdx3jzzv8rfjls80qajlhx5rf6";
2015-10-03 08:38:55 +00:00
};
dependencies = [];
};
CheckAttach = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "CheckAttach-2015-06-22";
2015-07-03 08:08:22 +00:00
src = fetchgit {
url = "git://github.com/chrisbra/CheckAttach";
rev = "a1d86be7e69b25b41ce1a7fe2d2844330f783b68";
sha256 = "0scshz5vc5j2lhjj5is4y392xarwsdh4z3y7kyibq3d7fmszksgn";
2015-07-03 08:08:22 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
Gist = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-12-11 18:31:40 +00:00
name = "Gist-2015-10-25";
2015-06-01 10:14:47 +00:00
src = fetchgit {
url = "git://github.com/mattn/gist-vim";
2015-12-11 18:31:40 +00:00
rev = "88c331e2e07765090112a396e5e119b39b5aa754";
sha256 = "0z7qnkgv8ryyiwikz6v6vpqypr2gh2hih27cil02rs4ci4041w74";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
Hoogle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-01-04 11:45:05 +00:00
name = "Hoogle-2015-12-24";
2014-10-21 12:24:30 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/Twinside/vim-hoogle";
2016-01-04 11:45:05 +00:00
rev = "a5db36f048ac16ab9774fc86f36cd4ae9a444932";
2016-02-25 09:17:06 +00:00
sha256 = "1855n6dsimbc0brfbmmkx1gszhmgfghm1h1mpi95mq9qzbwkgjri";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-10-21 12:24:30 +00:00
2015-06-01 10:14:47 +00:00
};
2015-05-11 19:46:41 +00:00
2015-06-01 10:14:47 +00:00
Solarized = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Solarized-2011-05-09";
2015-03-26 18:16:21 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/altercation/vim-colors-solarized";
rev = "528a59f26d12278698bb946f8fb82a63711eec21";
2016-02-25 09:17:06 +00:00
sha256 = "05d3lmd1shyagvr3jygqghxd3k8a4vp32723fvxdm57fdrlyzcm1";
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2013-06-21 05:11:07 +00:00
};
2014-10-21 12:24:30 +00:00
2015-06-01 10:14:47 +00:00
Supertab = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-01-22 20:02:39 +00:00
name = "Supertab-2016-01-03";
2014-10-21 12:24:30 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/ervandew/supertab";
2016-01-22 20:02:39 +00:00
rev = "66511772a430a5eaad7f7d03dbb02e8f33c4a641";
sha256 = "1kxxgplsc40wyl7yj3dpcjjgysd41cd32ppcpnj5knphpjw7abp4";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2015-05-11 19:46:41 +00:00
2015-06-01 10:14:47 +00:00
};
2015-05-11 19:46:41 +00:00
2015-06-01 10:14:47 +00:00
Syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Syntastic-2016-10-04";
2015-03-26 18:16:21 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/scrooloose/syntastic";
rev = "75b1095586b1cb685ccb0e69004bcd4ae75b37da";
sha256 = "1hlw6ahlfm4k837zy079acv4lih2r2l9d8fwzb8d970r55p6qffb";
2013-08-22 00:43:59 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2013-08-22 00:43:59 +00:00
};
2015-06-01 10:14:47 +00:00
Tabular = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Tabular-2016-05-04";
2015-06-01 10:14:47 +00:00
src = fetchgit {
url = "git://github.com/godlygeek/tabular";
rev = "00e1e7fcdbc6d753e0bc8043e0d2546fa81bf367";
sha256 = "185jpisk9hamcwb6aiavdzjdbbigzdra8f4mgs98r9cm9j448xkz";
2015-06-01 10:14:47 +00:00
};
dependencies = [];
2015-03-26 18:16:21 +00:00
2015-06-01 10:14:47 +00:00
};
2014-10-20 06:55:25 +00:00
2015-06-01 10:14:47 +00:00
Tagbar = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Tagbar-2016-09-25";
2013-12-16 01:21:23 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/majutsushi/tagbar";
rev = "2955f71856536d503c79c15daab3de890a6d83e9";
sha256 = "16hz3mvfz4q4sxg2vq2m2gkmpwhchql14yxw1ws05qqnyy0jbxk2";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
The_NERD_Commenter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "The_NERD_Commenter-2016-08-31";
2014-10-21 12:24:30 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/scrooloose/nerdcommenter";
rev = "fdc611c8f4dbb5bed57fe95d076cf82e9bcb5e7d";
sha256 = "0qdryph7mjny3vcb6255q75fykxps7wvyzibfb3lxrkvqv6i1dlr";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-10-20 06:55:25 +00:00
};
2015-06-01 10:14:47 +00:00
The_NERD_tree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "The_NERD_tree-2016-10-04";
2014-10-20 06:55:25 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/scrooloose/nerdtree";
rev = "f26eaf83551631e683e339f00e2c97bd6e8356d7";
sha256 = "0vljxnnlm7sdhb61z4114lzjy6gi59y3ym5fynplvccsbv0s47r2";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-10-21 12:24:30 +00:00
2015-06-01 10:14:47 +00:00
};
2014-11-20 20:49:17 +00:00
2015-06-01 10:14:47 +00:00
UltiSnips = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "UltiSnips-2016-09-19";
2014-10-20 06:55:25 +00:00
src = fetchgit {
2015-12-11 18:31:40 +00:00
url = "git://github.com/SirVer/ultisnips";
rev = "97a280417b9ebcd098283b46ba9f144c6344bb8d";
sha256 = "030n4f5mwxlq6qfizh82s5h8zlfm3qdh0lc3rc01p0nwbgpvyrg3";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-10-20 06:55:25 +00:00
};
2015-06-01 10:14:47 +00:00
VimOutliner = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "VimOutliner-2016-07-22";
2014-10-20 06:55:25 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/vimoutliner/vimoutliner";
rev = "bd80cee8d9df9530c730ec4237de7ebe197b3642";
sha256 = "0ynf60vzahif8ccb50kssjk64bh3r8bai3x37n6qb1gi5m61yn3z";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
WebAPI = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "WebAPI-2016-07-06";
2014-10-21 12:24:30 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/mattn/webapi-vim";
rev = "e3fa93f29a3a0754204002775e140d8a9acfd7fd";
sha256 = "0z6s3cnipcww4q33d4dcp0p8jw29izghcrj75fxy6dmy1yw2fbcr";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
YankRing = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "YankRing";
src = fetchurl {
2015-07-29 18:58:17 +00:00
url = "http://www.vim.org/scripts/download_script.php?src_id=23487";
name = "yankring_190.zip";
sha256 = "0nnxpsfjp2p9jvs3y5ynnd5s56snz9927zdp9bgmay2jgxfmp0si";
2015-03-26 18:16:21 +00:00
};
2015-06-01 10:14:47 +00:00
buildInputs = [ unzip ];
dependencies = [];
2014-10-21 12:24:30 +00:00
meta = {
2015-06-01 10:14:47 +00:00
url = "http://www.vim.org/scripts/script.php?script_id=1234";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
2016-05-24 13:36:26 +00:00
sourceRoot = ".";
2014-10-20 06:55:25 +00:00
};
2015-06-01 10:14:47 +00:00
commentary = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-04-15 22:32:47 +00:00
name = "commentary-2016-03-10";
2014-10-21 12:24:30 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/tpope/vim-commentary";
2016-04-15 22:32:47 +00:00
rev = "73e0d9a9d1f51b6cc9dc965f62669194ae851cb1";
sha256 = "1z409hpdk22v2ccx2y3sgcjf4fmnq7pyjfnk72srpqydfivxsl13";
};
dependencies = [];
};
ctrlp-py-matcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "ctrlp-py-matcher-2016-09-02";
src = fetchgit {
url = "git://github.com/FelikZ/ctrlp-py-matcher";
rev = "3624f3a085681f787f1f9b7a8a24d4bed395acf1";
sha256 = "1126gphnhfvba5xzvqj4s582k61xsvi5hn86zag42v14v5csgw9d";
};
dependencies = [];
};
ctrlp-cmatcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "ctrlp-cmatcher-2016-09-22";
src = fetchgit {
url = "git://github.com/JazzCore/ctrlp-cmatcher";
rev = "6c36334f106b6fd981d23e724e9a618734cab43a";
sha256 = "1573kd6xf3n8sxlz2j4zadai4rnc7k3s9c54648yfzickwn57d8q";
};
dependencies = [];
buildInputs = [ python ];
buildPhase = ''
patchShebangs .
./install.sh
'';
};
ctrlp-z = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-12-11 18:31:40 +00:00
name = "ctrlp-z-2015-10-17";
src = fetchgit {
url = "git://github.com/amiorin/ctrlp-z";
2015-12-11 18:31:40 +00:00
rev = "d1a69ec623ce24b9a30fc8fe3cd468c322b03026";
2016-02-25 09:17:06 +00:00
sha256 = "16nsj1g8lqmyizlb5ijwhf4dsmh0xv1kwqq6jxvhaf55vfga82yl";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
extradite = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-10-02 09:36:09 +00:00
name = "extradite-2015-09-22";
2014-10-21 12:24:30 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/int3/vim-extradite";
2015-10-02 09:36:09 +00:00
rev = "52326f6d333cdbb9e9c6d6772af87f4f39c00526";
sha256 = "0c89i0spvdm9vi65q15qcmsfmwa9rds2wmaq1kf6s7q7ywvs6w8i";
};
2015-06-01 10:14:47 +00:00
dependencies = [];
};
2015-06-01 10:14:47 +00:00
fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "fugitive-2016-08-08";
2014-10-20 06:55:25 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/tpope/vim-fugitive";
rev = "aac85a268e89a6c8be79341e130ac90256fadbd6";
sha256 = "1hsq8lgw1gn99y0rr214bcc9vlw0kx8yajci7dimwhbh817kq5v4";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
ghcmod = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "ghcmod-2016-06-19";
2014-11-18 22:05:30 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/eagletmt/ghcmod-vim";
rev = "1d192d13d68ab59f9f46497a0909bf24a7b7dfff";
sha256 = "0bzahgzagnf0a9zv86jhdf8nc3p0yfz9izv5n3lc8gc12cp47d0a";
2014-11-18 22:05:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-11-18 22:05:30 +00:00
2015-06-01 10:14:47 +00:00
};
2015-05-11 19:46:41 +00:00
vim-auto-save = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-auto-save-2016-09-12";
src = fetchgit {
url = "git://github.com/907th/vim-auto-save";
rev = "28300c8a7b8cea137c065a48fd9bcc2348f08707";
sha256 = "0n3xbp8vf3xsh6y6f855q313scldqm9593bhxydyszy1parvxwb5";
};
dependencies = [];
};
2016-03-09 17:24:06 +00:00
vim-autoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-autoformat-2016-09-09";
2015-10-03 08:44:52 +00:00
src = fetchgit {
2016-03-09 17:24:06 +00:00
url = "git://github.com/Chiel92/vim-autoformat";
rev = "f6fabad46f34afd75ae74995c10813eab7021bbf";
sha256 = "1n9ij49npiksdhzdkv2wn6cx2kyn62f3j2ins0ng85kzgh83a0jc";
2015-10-03 08:44:52 +00:00
};
dependencies = [];
};
2016-03-09 17:24:06 +00:00
vim-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-nix-2016-08-07";
src = fetchgit {
2016-03-09 17:24:06 +00:00
url = "git://github.com/LnL7/vim-nix";
rev = "a61495a762feacc00f24cab4392b09cc3250decf";
sha256 = "0icq9nawm6s4qzb9q62y3fdq4ixbfwmmgk141fnfqzq6ya1azxac";
};
dependencies = [];
};
deoplete-nvim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "deoplete-nvim-2016-10-01";
src = fetchgit {
url = "git://github.com/Shougo/deoplete.nvim";
rev = "0e663c022a8f9b318ad494de4246754ad34effb3";
sha256 = "1w3riv8x8x4hgdyhabcis25f1scapgw9r4xzlnfrz809l25wwxds";
2016-06-17 06:16:39 +00:00
};
dependencies = [];
};
2016-04-15 22:32:47 +00:00
Spacegray-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-06-14 21:03:59 +00:00
name = "Spacegray-vim-2016-06-04";
2016-04-15 22:32:47 +00:00
src = fetchgit {
url = "git://github.com/ajh17/Spacegray.vim";
2016-06-14 21:03:59 +00:00
rev = "adb621e3d1df5f55d60383717bbae4533fda9c62";
sha256 = "15n92rllri11ckdy1dykllx7xpgscvhfqa55z5sl66zicnrv89c9";
2016-04-15 22:32:47 +00:00
};
dependencies = [];
};
vim-closetag = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-closetag-2016-07-19";
src = fetchgit {
url = "git://github.com/alvan/vim-closetag";
rev = "e7e6cb99b9abb2aaa4711b9b2a98ad029169253b";
sha256 = "0827yrgawfjf82z37lndf58ikyh6s8g9qhxvnbfxvz8cc4a6r21v";
};
dependencies = [];
};
2015-09-16 21:40:31 +00:00
vim-css-color = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-css-color-2016-09-06";
2015-09-16 21:40:31 +00:00
src = fetchgit {
url = "git://github.com/ap/vim-css-color";
rev = "499a3767d5d5af8cd427007d2a38623d339f2f85";
sha256 = "026n85pi85jx5ph1v2ss2fhzm2x02v9kx7w97367p3vmd2cggba3";
2015-09-16 21:40:31 +00:00
};
dependencies = [];
};
2015-10-02 08:26:46 +00:00
neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neomake-2016-10-03";
2015-10-02 08:26:46 +00:00
src = fetchgit {
url = "git://github.com/benekastah/neomake";
rev = "4771be7bee6023568f80dc21fdda071693b81cca";
sha256 = "1bkn98iwfx6fhccnwxjh694w2yjfvczkrbm7h6mjkl8n8zka93kc";
2015-10-02 08:26:46 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-hdevtools = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-hdevtools-2012-12-29";
2014-10-21 12:24:30 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/bitc/vim-hdevtools";
rev = "474947c52ff9c93dd36f3c49de90bd9a78f0baa1";
2016-02-25 09:17:06 +00:00
sha256 = "1wwjb9m2l9q75d408jzq9bwv5i376bfgs6vc3ihwwlawcrmhjpxz";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-10-21 12:24:30 +00:00
2015-06-01 10:14:47 +00:00
};
2015-05-11 19:46:41 +00:00
2015-06-01 10:14:47 +00:00
vim-tmux-navigator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-tmux-navigator-2016-09-03";
2014-11-23 19:42:22 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/christoomey/vim-tmux-navigator";
rev = "e79d4c0c24c43d3ada283b1f5a1b8fa6cf820a70";
sha256 = "1p4kb8ja86pa3l9jh8yfjvdvdik4fwnpbpl34npjwbga52pawn65";
};
dependencies = [];
};
spacevim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "spacevim-2016-09-15";
src = fetchgit {
url = "git://github.com/ctjhoa/spacevim";
rev = "b90e12ebc43fdc4cf6b75004d319c25b29efdf8f";
sha256 = "1hz84amsl9374mdsgg6szrsnf15kmqa3n2hmcagy5xmbj7fz1msc";
2014-11-23 19:42:22 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-11-23 19:42:22 +00:00
};
2015-10-03 08:38:55 +00:00
ctrlp-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "ctrlp-vim-2016-10-02";
2015-10-03 08:38:55 +00:00
src = fetchgit {
url = "git://github.com/ctrlpvim/ctrlp.vim";
rev = "c6d1fc5e58d689bfb104ff336aeb89d9ef1b48e2";
sha256 = "0m23yrmgbwaj35yh38sj43r16q090l4vbgijpyv1danmf7ws6q1f";
};
dependencies = [];
};
agda-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "agda-vim-2016-09-06";
src = fetchgit {
url = "git://github.com/derekelkins/agda-vim";
rev = "03e8cc9a8c7a58c431a32f50e80fe0fefe0c3f41";
sha256 = "0qkfxyddp3j14hz1vmm499dnkrgqzr2xsaxi6dz61alq65r4xbl9";
2015-10-03 08:38:55 +00:00
};
dependencies = [];
};
2015-09-16 00:38:20 +00:00
vim-jade = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-jade-2016-06-28";
2015-09-16 00:38:20 +00:00
src = fetchgit {
url = "git://github.com/digitaltoad/vim-jade";
rev = "f3950a72ea92f2c372846e763dad1f1151a38fb1";
sha256 = "1wa7zf24szmwchk608s5ikv14jzch9nl8isrn9ji9sz2511w50wp";
2015-09-16 00:38:20 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
neco-ghc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neco-ghc-2016-07-01";
2014-10-21 12:24:30 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/eagletmt/neco-ghc";
rev = "7f02a9c25fb272a87d2be092826e2cd3094c620d";
sha256 = "1fcfk45qb96h6y4zb3p0104iyqc85q1synn9ah56zp6hnkkyffbw";
};
dependencies = [];
};
acp = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "acp-2013-02-05";
src = fetchgit {
url = "git://github.com/eikenb/acp";
rev = "5c627cec37d0d3b1670cb250d84e176e8b0c644e";
sha256 = "0h7s4nvxin7m2caka7g1hhlxj1bbiwsvw8s2lqwlh7nq43v23ghg";
};
dependencies = [];
};
elm-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "elm-vim-2016-10-02";
src = fetchgit {
url = "git://github.com/elmcast/elm-vim";
rev = "7760aed9f258cf6a7d2c56d547dd3ea45f832025";
sha256 = "1f1z2929aka2shkwb8z2ky26cvw2cgx7wdcikw9mljpgc1s7nl5d";
};
dependencies = [];
};
2016-06-14 21:03:59 +00:00
vim-localvimrc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-localvimrc-2016-08-18";
2016-06-14 21:03:59 +00:00
src = fetchgit {
url = "git://github.com/embear/vim-localvimrc";
rev = "2d4c622da0bd04669cd149c6f424d0771708e8d6";
sha256 = "0j5344riafqr330q9jiglcqaffmcppq6r1512866cmkk000r6lc0";
2016-06-14 21:03:59 +00:00
};
dependencies = [];
};
vim-haskellConcealPlus = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-haskellConcealPlus-2016-05-13";
src = fetchgit {
url = "git://github.com/enomsg/vim-haskellConcealPlus";
rev = "81dfb51ff8e471fb1f30659a10daaf1bdd65fb03";
sha256 = "0vm76gxw62lkyxccrlnn8sblfl3d51svwfra9wfixq4h51jdggyr";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2013-06-27 01:21:11 +00:00
};
2015-06-01 10:14:47 +00:00
YUNOcommit-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "YUNOcommit-vim-2014-11-26";
2014-10-20 06:55:25 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/esneider/YUNOcommit.vim";
rev = "981082055a73ef076d7e27477874d2303153a448";
2016-02-25 09:17:06 +00:00
sha256 = "0mjc7fn405vcx1n7vadl98p5wgm6jxrlbdbkqgjq8f1m1ir81zab";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2015-06-01 10:14:47 +00:00
};
2014-10-21 12:24:30 +00:00
vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-go-2016-10-04";
src = fetchgit {
url = "git://github.com/fatih/vim-go";
rev = "1f8e10cebdacfd7a6809741a9eb04b5e1c3bc6ec";
sha256 = "1iyqa0pklba5badxmak8b8wp0xryk9fi8qky1fj9m8lchv7s69nn";
2015-12-11 18:31:40 +00:00
};
dependencies = [];
};
vim-colorschemes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-colorschemes-2016-08-01";
2015-12-11 18:31:40 +00:00
src = fetchgit {
url = "git://github.com/flazz/vim-colorschemes";
rev = "b8dff40f69f1873effbed97c759a8452ecb240ed";
sha256 = "1mb08l2crl5mal0jllh9s099w2bqcb88vfjw3z5zj1jn8bbpniaj";
};
dependencies = [];
};
floobits-neovim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "floobits-neovim-2016-06-20";
src = fetchgit {
url = "git://github.com/floobits/floobits-neovim";
rev = "cd9247f2ddeab1f9da247d495127b1a836415783";
sha256 = "12r0xmb5fl6gj47dr8xwiw0pan4xdwjxjjnyi5smfy4sg29lzwl7";
};
dependencies = [];
};
2016-06-14 21:03:59 +00:00
psc-ide-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "psc-ide-vim-2016-09-07";
2016-06-14 21:03:59 +00:00
src = fetchgit {
url = "git://github.com/frigoeu/psc-ide-vim";
rev = "3c376289d368b7175cb6c10e2960f08830ee4cb4";
sha256 = "0mzczy73asw66qz3zqbf48i95qfjrv1rhky9zyl5qcwlay1gyfvj";
2016-06-14 21:03:59 +00:00
};
dependencies = [];
};
vim-jsonnet = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-jsonnet-2016-10-01";
src = fetchgit {
url = "git://github.com/google/vim-jsonnet";
rev = "fb99d65bb42438fa65fb46051243bbae20a75e31";
sha256 = "19c2jwpabsx16m23mzfspazlj565ra3xzsibm9283k46dlax9mwh";
};
dependencies = [];
};
vim-leader-guide = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-leader-guide-2016-10-03";
src = fetchgit {
url = "git://github.com/hecal3/vim-leader-guide";
rev = "0d08f2f5603d61b0099d2323e0ca4ab30f8a4d49";
sha256 = "0035yzgswqfamcvrbxcjbxs5lywcg5vsrddlnawx8x0rzm4az5nh";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
idris-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "idris-vim-2016-07-29";
2014-11-20 20:49:17 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/idris-hackers/idris-vim";
rev = "7ef7a2ed9135d69a0dea6b571a20ddf2b0bf7a90";
sha256 = "0py7vyg38yn6bl7pwyyhylpqp14smqjzbfj7rjzjfnlq33v7ysij";
2014-11-20 20:49:17 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-11-20 20:49:17 +00:00
};
2015-06-01 10:14:47 +00:00
calendar-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "calendar-vim-2016-09-20";
2015-06-01 10:14:47 +00:00
src = fetchgit {
url = "git://github.com/itchyny/calendar.vim";
rev = "38b2cf96acf2cb1dc033de4b499f5b223adebacd";
sha256 = "1yi16vj3if5l55f7pava75fd412skj7nmj4r73dpkqa36dg0xljw";
2016-04-15 22:32:47 +00:00
};
dependencies = [];
};
lightline-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "lightline-vim-2016-10-05";
2016-04-15 22:32:47 +00:00
src = fetchgit {
url = "git://github.com/itchyny/lightline.vim";
rev = "9e8d9f68dfe9b19eba343f796ffd16933a4dc77d";
sha256 = "02sc5sv0clm79b0p0ayk20j750c6gmw0akg6k9lz9dp9aryx8r9i";
};
2015-06-01 10:14:47 +00:00
dependencies = [];
};
2015-06-01 10:14:47 +00:00
thumbnail-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "thumbnail-vim-2016-09-06";
2014-10-21 12:24:30 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/itchyny/thumbnail.vim";
rev = "d697fb7a73a53275390c20040faab87b54f12f84";
sha256 = "112hkblw30ym7bpv8454fylalv9kn0l3268gpkh9a5qdr2kf99b1";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
vim-ipython = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-26 23:05:15 +00:00
name = "vim-ipython-2015-06-23";
2014-08-13 17:58:25 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/ivanov/vim-ipython";
2015-06-26 23:05:15 +00:00
rev = "42499f094b805b90b683afa5009cee99abd0bb75";
sha256 = "10wpfvfs8yv1bvzra4d5zy5glp62gbalpayxx7mkalhr2ccppy3x";
2014-10-21 12:24:30 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2014-10-21 12:24:30 +00:00
2015-06-01 10:14:47 +00:00
};
2014-08-13 17:58:25 +00:00
2015-06-01 10:14:47 +00:00
vim-hier = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-hier-2011-08-27";
2014-08-13 17:58:25 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/jceb/vim-hier";
rev = "0b8c365263551a67404ebd7e528c55e17c1d3de7";
2016-02-25 09:17:06 +00:00
sha256 = "118pd9sx1bl9vfr89xrf536hfx4l162a43a1qpwpkqxzb9a3ca7n";
};
2015-06-01 10:14:47 +00:00
dependencies = [];
buildInputs = [ vim ];
};
2016-04-15 22:32:47 +00:00
vim-orgmode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-orgmode-2016-07-12";
2016-04-15 22:32:47 +00:00
src = fetchgit {
url = "git://github.com/jceb/vim-orgmode";
rev = "e76c0f07e9193e08df2b8eeb95ef6240b494797f";
sha256 = "00ys1qf8hbigrdxshs5xvg662xcd6qaiw2g1nr21pfs682qdjsyf";
2016-04-15 22:32:47 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-buffergator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-04-15 22:32:47 +00:00
name = "vim-buffergator-2016-04-07";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/jeetsukumaran/vim-buffergator";
2016-04-15 22:32:47 +00:00
rev = "611966d1ced784d5659c5dc07e984fabd95d917f";
sha256 = "1brb6qwlgxq4zcmrqp7wf2zvfvdq4zm8ynzg8wg9rq5cmyp8f61z";
2015-03-26 18:16:21 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
};
2015-06-01 10:14:47 +00:00
tslime-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-06-14 21:03:59 +00:00
name = "tslime-vim-2016-06-14";
2015-03-26 18:16:21 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/jgdavey/tslime.vim";
2016-06-14 21:03:59 +00:00
rev = "c980c76bbfc9a523fcf1edf08580d0d3a486e8f2";
sha256 = "0gifyxwlspfnkni886adwn9kc0dckanjk0097y8pwxh7qbwfydf1";
2015-03-26 18:16:21 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2015-02-16 01:20:10 +00:00
2015-06-01 10:14:47 +00:00
};
2015-02-16 01:20:10 +00:00
2015-06-01 10:14:47 +00:00
vim-nerdtree-tabs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-nerdtree-tabs-2016-09-19";
2015-06-01 10:14:47 +00:00
src = fetchgit {
url = "git://github.com/jistr/vim-nerdtree-tabs";
rev = "5a91230193fea7f9c8d792cb5c635998d868337d";
sha256 = "08g587bnd8n61nj44ghjadwqpbbqya4hig56afna6rhs341zwlpm";
2015-02-16 01:20:10 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2015-02-16 01:20:10 +00:00
};
zenburn = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "zenburn-2015-09-18";
src = fetchgit {
url = "git://github.com/jnurmine/zenburn";
rev = "f7847fb1531b91e2b4bb4aed5db3146f07765179";
2016-04-15 22:32:47 +00:00
sha256 = "1las12jznf25dkxrjk3s9l70c6wnpjisngmvi83bhw5gvx4c7mq5";
};
dependencies = [];
};
2015-12-11 18:31:40 +00:00
vim-colorstepper = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-02-25 09:17:06 +00:00
name = "vim-colorstepper-2016-01-28";
2015-12-11 18:31:40 +00:00
src = fetchgit {
url = "git://github.com/jonbri/vim-colorstepper";
2016-02-25 09:17:06 +00:00
rev = "f23ba0d995d41508a2dc9471cf31d3d01a4b5f05";
sha256 = "05ykxn0gmh8liz0zv5hb8df1ajggxp88izq3825m0yb3ma3k1jqs";
2015-12-11 18:31:40 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-xdebug-2012-08-15";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/joonty/vim-xdebug";
rev = "a4980fa65f7f159780593ee37c178281691ba2c4";
2016-02-25 09:17:06 +00:00
sha256 = "1qh18r0sm4gh95sjbi2hnflvxdl4gk00jyy3n7z4i1gnx9ihxjqw";
2015-02-03 21:17:08 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
postInstall = false;
2015-02-03 21:17:08 +00:00
};
fzf-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "fzf-vim-2016-09-30";
src = fetchgit {
url = "git://github.com/junegunn/fzf.vim";
rev = "7d1b007cb234d181fd09a50e40e50cb49642861b";
sha256 = "1011n55n6anfd5cc4cafr1clkdbb2yd9lyzpk7yb4jzmvjvsx64b";
};
dependencies = [];
};
2015-10-02 08:26:46 +00:00
limelight-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "limelight-vim-2016-06-24";
2015-10-02 08:26:46 +00:00
src = fetchgit {
url = "git://github.com/junegunn/limelight.vim";
rev = "106fb5749d227a0de72e36068ed72798c6fd48e6";
sha256 = "0fp4yp50n5v5zx3a7afh9wip4nwcfhmdgdzwpnl79jvild1z9fgh";
2015-10-02 08:26:46 +00:00
};
dependencies = [];
};
vim-peekaboo = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-peekaboo-2016-08-05";
2015-10-02 08:26:46 +00:00
src = fetchgit {
url = "git://github.com/junegunn/vim-peekaboo";
rev = "9c8415c022ab24ce51af13aa43255d5a7c7ef670";
sha256 = "10c8j4wcg7g3i3vyvlcc21j0a3xmbl5ii5fl5k27iy2icf5rm018";
2015-10-02 08:26:46 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-eighties = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-12-11 18:31:40 +00:00
name = "vim-eighties-2015-11-02";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/justincampbell/vim-eighties";
2015-12-11 18:31:40 +00:00
rev = "62a9719df45fddd0456bf47420fc4768f9c8f5a5";
sha256 = "1ada7f2lhdwjqmy5kxma69s215z4phi4khh8hsy5qd6k3a4bvyrs";
};
2015-06-01 10:14:47 +00:00
dependencies = [];
2015-06-01 10:14:47 +00:00
};
2015-06-01 10:14:47 +00:00
latex-box = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-15 22:43:54 +00:00
name = "latex-box-2015-06-01";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/latex-box-team/latex-box";
2015-06-15 22:43:54 +00:00
rev = "3c2901e12cb78bfb2be58ba4c62a488612550fe1";
sha256 = "1z4mdy47cpwcdhvy8mr72vhlybxn1y59yd3ixf6ids1bzpkrd7zl";
};
dependencies = [];
2015-06-01 10:14:47 +00:00
};
2015-06-01 10:14:47 +00:00
vim-jinja = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-05-24 13:36:26 +00:00
name = "vim-jinja-2016-05-20";
2015-06-01 10:14:47 +00:00
src = fetchgit {
url = "git://github.com/lepture/vim-jinja";
2016-05-24 13:36:26 +00:00
rev = "0bcc2993ef13bacd4bf1a0d91eb17652f7aedb86";
sha256 = "1wypg9rf7q65g6l3ajp75gdb4cd7spckzd4b7ccg8c47vd937dcj";
2015-06-01 10:14:47 +00:00
};
dependencies = [];
};
2015-10-02 08:26:46 +00:00
vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vimtex-2016-10-03";
2015-10-02 08:26:46 +00:00
src = fetchgit {
url = "git://github.com/lervag/vimtex";
rev = "abf50a3f04dff85e2e1fb7f8f5123e54dce32706";
sha256 = "0vln1y2w13fjsvqd5pqjkqx62q3gbhmgkx49i5rdx9vblmg77n7y";
2015-10-02 08:26:46 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-easymotion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-easymotion-2016-05-07";
2015-06-01 10:14:47 +00:00
src = fetchgit {
url = "git://github.com/lokaltog/vim-easymotion";
rev = "5c6f3cd9a713491e6b32752a05c45198aa91540a";
sha256 = "0nr50c6hsg43bc86gkiram5whkggjpszffl8xkqxdmlspz9h96v3";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
rainbow = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "rainbow-2016-08-08";
src = fetchgit {
url = "git://github.com/luochen1990/rainbow";
rev = "eeb35ccece20f2648b44580c484c6e57eec3c92b";
sha256 = "0s1ygjm5czzj1idrw4f13gg60zljznb6bs7fps4i3wl2mbmw5641";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-xkbswitch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-02-25 09:17:06 +00:00
name = "vim-xkbswitch-2016-01-31";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/lyokha/vim-xkbswitch";
2016-02-25 09:17:06 +00:00
rev = "89fa3fc16251f2e97281d29ade3ee022ba285003";
sha256 = "16wahaz9d6jyqlvmsn764xqircrwaap3pn4fbgmly7vfmdvq4p8b";
};
2015-06-15 22:43:54 +00:00
dependencies = [];
2015-06-07 12:59:38 +00:00
patchPhase = ''
substituteInPlace plugin/xkbswitch.vim \
--replace /usr/local/lib/libxkbswitch.so ${xkb_switch}/lib/libxkbswitch.so
'';
2015-06-01 10:14:47 +00:00
buildInputs = [ xkb_switch ];
};
2015-06-01 10:14:47 +00:00
vim-startify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-startify-2016-07-21";
src = fetchgit {
url = "git://github.com/mhinz/vim-startify";
rev = "3f7b8d7b5e8b9f7670f7bcfab3596cb72930ca5e";
sha256 = "00shnn7wmi3y3354ppd4dgjkxzdnj6cc9wa5sp998y7jlxnc84i9";
};
dependencies = [];
};
2015-09-21 20:01:11 +00:00
lushtags = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "lushtags-2016-04-26";
2015-09-21 20:01:11 +00:00
src = fetchgit {
url = "git://github.com/mkasa/lushtags";
rev = "641e4163d078e7c3844f2ac82a8153a3ef06484b";
sha256 = "1zqgvflkw0pnrv6bzvlsd98sc2m7nk5w3bzqdzj3xdi8ahqx239g";
};
dependencies = [];
};
hlint-refactor-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "hlint-refactor-vim-2015-12-05";
src = fetchgit {
url = "git://github.com/mpickering/hlint-refactor-vim";
rev = "fffb044ecef854a82c5c2efda252e09044ba03e0";
sha256 = "0z8d31arfy9aidg1dwj5msnnx799d9r7njkgh51z695w6ayxn6p8";
2015-09-21 20:01:11 +00:00
};
dependencies = [];
};
2016-08-29 12:40:12 +00:00
vim-indent-guides = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-indent-guides-2016-04-17";
src = fetchgit {
url = "git://github.com/nathanaelkane/vim-indent-guides";
rev = "018298ead9d3aa9cd3b4ae222f81022a33978b09";
sha256 = "0zyrs9r3vza2kqhqir6qpkygy6yljpn877bvycspv89ljzczmwrs";
};
dependencies = [];
};
2015-06-01 10:14:47 +00: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 09:17:06 +00:00
sha256 = "1xm5ark2mwphznv3xsyzgcldnr52i5jzk1pfqdh0080j07aama8j";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
haskell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "haskell-vim-2016-09-08";
src = fetchgit {
url = "git://github.com/neovimhaskell/haskell-vim";
rev = "962d39f9ef24b9f7af65f10058fd4fff31eb26b4";
sha256 = "159lr2cl27chpcicdisaz8fk0iy8lz5c0p9mi2lw1advinjxz3zb";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
shabadou-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "shabadou-vim-2016-07-19";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/osyo-manga/shabadou.vim";
rev = "7d4bfed1ea8985ae125df3d1403cc19e252443e1";
sha256 = "1kvik1yf7yjg9jdmdw38yhkksxg0n3nry02banwik7wgjnpvg870";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-watchdogs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-watchdogs-2016-09-05";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/osyo-manga/vim-watchdogs";
rev = "96ee0ce968da8da8ace48457665c7d5c942dd49d";
sha256 = "16dk0wsikqmcywgm04vwv76p2sc6jw0krq4cg02zdpgyb4xxgp3n";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
2016-02-25 09:17:06 +00:00
vim-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-racer-2016-10-01";
src = fetchgit {
2016-02-25 09:17:06 +00:00
url = "git://github.com/racer-rust/vim-racer";
rev = "78774aee6be126f5dcf576042ac4872e04a1a3a7";
sha256 = "10rv21g72pkaakxqr016l9r42hjiys1rhhhbnv3pmmfqv38ifx0a";
2016-06-14 21:03:59 +00:00
};
dependencies = [];
};
purescript-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "purescript-vim-2016-08-31";
2016-06-14 21:03:59 +00:00
src = fetchgit {
url = "git://github.com/raichoo/purescript-vim";
rev = "2c55bcefd63bc40ed2aa9d6ce9d89a590dfa3477";
sha256 = "1y96w8p865gd6zr29wpxn1qwsk833y06x1qp586gylgi0jp1ybzv";
};
dependencies = [];
};
vim-grammarous = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-grammarous-2016-09-28";
src = fetchgit {
url = "git://github.com/rhysd/vim-grammarous";
rev = "580785b4313613c1fd47ac291d92e1458f3ac2e3";
sha256 = "0fxnzyb0svmgb3jc9dh6kfxli59kx3289hgwzcclfcff0m9df7q0";
};
dependencies = [];
};
rust-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "rust-vim-2016-09-30";
src = fetchgit {
url = "git://github.com/rust-lang/rust.vim";
rev = "2030019e1a5d0593dc662a0c37f3d06c4de8c252";
sha256 = "1d53aw4lprvf7qmk87jar8w7dkqara8k3hdm3qjhjlc1a7qv6i9v";
};
dependencies = [];
};
neoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neoformat-2016-09-23";
src = fetchgit {
url = "git://github.com/sbdchd/neoformat";
rev = "c15243abdbfef8d0c6d626d6f3676f3694e13131";
sha256 = "18qsw1z98mg0x3rdvd0j95vyl0n4kacxz4viv600aiisv20s30i3";
};
dependencies = [];
};
vim-polyglot = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-polyglot-2016-09-11";
src = fetchgit {
url = "git://github.com/sheerun/vim-polyglot";
rev = "74652b465d7eff97070001317a4ea5557717378d";
sha256 = "18bw8fdpq5riqfy656kw4a9hmrk8s967qx36lq0s16sbyqxm15ag";
};
dependencies = [];
2016-02-25 09:17:06 +00:00
};
2015-06-01 10:14:47 +00:00
neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neocomplete-vim-2016-09-30";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/shougo/neocomplete.vim";
rev = "16d650348538f780d282863ecbdcc45319d36522";
sha256 = "0var0md485r6kfrsdbd9zmmid6z7zvqhl5n71q8fjnvsgsb9v6a6";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neosnippet-snippets-2016-09-26";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/shougo/neosnippet-snippets";
rev = "be02928b14cae1effbe4388da4d5a75215344ba6";
sha256 = "1r3v229plm8qizy0m83rrl0y4b5m2lawc3c22q4zpm9l28hxk084";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neosnippet-vim-2016-09-11";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/shougo/neosnippet.vim";
rev = "a1508f88729e1c5912dd12417553f178494c4dd2";
sha256 = "14pjz6grz56ab65al2h9vn9nlqr6r9cqa8qghdg3rj0sy40lyz7a";
2015-09-01 02:10:53 +00:00
};
dependencies = [];
};
unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "unite-vim-2016-09-30";
2015-09-01 02:10:53 +00:00
src = fetchgit {
url = "git://github.com/shougo/unite.vim";
rev = "504edce8c33207c522d6fe8f7864e0c25f25757f";
sha256 = "0nn3h8nj258s55qwgsskcw028lnsl66x32mq0k6yyklwljplfn1s";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vimproc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vimproc-vim-2016-08-06";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/shougo/vimproc.vim";
rev = "25cb83f24edec4aec1e9f1329302235e7a7a7fe0";
sha256 = "19nl21623cv05j6ljyn35qm38pw3680nch2by1gapqmxazp99i20";
};
dependencies = [];
2015-06-01 10:14:47 +00:00
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
2015-06-01 10:14:47 +00:00
make -f make_unix.mak
'';
};
2015-06-01 10:14:47 +00:00
vimshell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vimshell-vim-2016-09-05";
2015-06-01 10:14:47 +00:00
src = fetchgit {
url = "git://github.com/shougo/vimshell.vim";
rev = "371f0774907713959fedbdb37973a55e60428f42";
sha256 = "0jgfqsk2g6hlmks7c5ig0wlpzmdv6dlf91kdiiqfnli9xsfaq0i8";
2015-06-01 10:14:47 +00:00
};
dependencies = [ "vimproc-vim" ];
};
2015-06-01 10:14:47 +00:00
2015-10-02 09:36:09 +00:00
gundo-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-01-22 20:02:39 +00:00
name = "gundo-vim-2016-01-19";
2015-10-02 09:36:09 +00:00
src = fetchgit {
url = "git://github.com/sjl/gundo.vim";
2016-01-22 20:02:39 +00:00
rev = "e7fe41024ace9047eee610f23311d44fd9d917c0";
sha256 = "14mx617mxh7q6rhjfcnv080hpr965vhqzfwhlizpmzc16lsf7ni1";
2015-10-02 09:36:09 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-hardtime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-hardtime-2016-07-05";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/takac/vim-hardtime";
rev = "93ed99803df721648a9b93f0ccd4afe3d8d95a4e";
sha256 = "0as6kbdg2jqkxphxyv6ik6qxyp245hl52aqmx5gjd4vi3pryg0gl";
};
dependencies = [];
};
vim-expand-region = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-expand-region-2013-08-19";
src = fetchgit {
url = "git://github.com/terryma/vim-expand-region";
rev = "966513543de0ddc2d673b5528a056269e7917276";
sha256 = "0l30wjlk4vxr16f1njnvf8aw9yg9p9jisvcxbcg3znsq5q8ix6zv";
};
dependencies = [];
};
vimpreviewpandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vimpreviewpandoc-2016-03-07";
src = fetchgit {
url = "git://github.com/tex/vimpreviewpandoc";
rev = "b109d41ad6478df5ec7f1311950c6efca66f36e4";
sha256 = "1gx326xarjs3qjygpkrknncad90crjqfx8v6pir4r7k1hl7dfxc4";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-quickrun-2016-09-22";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/thinca/vim-quickrun";
rev = "25b23f3519aabf2515fa4c70390bbea507516377";
sha256 = "1rb1i8bv2g95l5pp5rmaf4xidqjbkk05dz8kb6b9fdzjnskr0mca";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
2015-09-01 02:10:53 +00:00
molokai = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-12-11 18:31:40 +00:00
name = "molokai-2015-11-11";
2015-09-01 02:10:53 +00:00
src = fetchgit {
url = "git://github.com/tomasr/molokai";
2015-12-11 18:31:40 +00:00
rev = "c67bdfcdb31415aa0ade7f8c003261700a885476";
2016-02-25 09:17:06 +00:00
sha256 = "1piszjr5kyw43ac1f0jh9z88g824xknshrkchbys9qxlz7pd831s";
2015-09-01 02:10:53 +00:00
};
dependencies = [];
};
2015-10-02 08:26:46 +00:00
vim-eunuch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-eunuch-2016-09-07";
2015-10-02 08:26:46 +00:00
src = fetchgit {
url = "git://github.com/tpope/vim-eunuch";
rev = "7eeb681ff3caedc1c01e50966bc293951f7b3e21";
sha256 = "0hk4p1qjmplddmwrpp6b2x776z1298pkcgp855kgigib53w5srmc";
2015-10-02 08:26:46 +00:00
};
dependencies = [];
};
vim-repeat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-repeat-2015-05-09";
src = fetchgit {
url = "git://github.com/tpope/vim-repeat";
rev = "7a6675f092842c8f81e71d5345bd7cdbf3759415";
sha256 = "0p8g5y3vyl1765lj1r8jpc06l465f9bagivq6k8ndajbg049brl7";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
hasksyn = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "hasksyn-2014-09-03";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/travitch/hasksyn";
rev = "c434040bf13a17ca20a551223021b3ace7e453b9";
sha256 = "09998lnfcshqis5m062wlag6y476imq9jday9gp4ayjjl1cp3cwx";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-haskellconceal = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-haskellconceal-2014-10-28";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/twinside/vim-haskellconceal";
rev = "f73c5dd660b7009a050b131783d7c17b4954e4d9";
2016-02-25 09:17:06 +00:00
sha256 = "1a1v0m3qj0gian3mp5xynf2ghscr3xaid37b0wi38bb4f2qrigqy";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "youcompleteme-2016-10-04";
2015-06-01 10:14:47 +00:00
src = fetchgit {
url = "git://github.com/valloric/youcompleteme";
rev = "c1cd62dc3c522d49b1989aceb64566326db2fcf2";
sha256 = "01bqgg7zlfhyri0cwx24mf2rbvr063c7sm5fz1kkccpqr77xiz7h";
};
dependencies = [];
2015-06-01 10:14:47 +00:00
buildInputs = [
2016-01-08 21:38:23 +00:00
python go cmake
(if stdenv.isDarwin then llvmPackages.clang else llvmPackages.clang-unwrapped)
llvmPackages.llvm
2016-01-08 21:38:23 +00:00
] ++ stdenv.lib.optional stdenv.isDarwin Cocoa;
2015-06-01 10:14:47 +00:00
propagatedBuildInputs = stdenv.lib.optional (!stdenv.isDarwin) rustracerd;
patches = [
./patches/youcompleteme/1-top-cmake.patch
./patches/youcompleteme/2-ycm-cmake.patch
];
2015-06-01 10:14:47 +00:00
buildPhase = ''
patchShebangs .
substituteInPlace plugin/youcompleteme.vim \
--replace "'ycm_path_to_python_interpreter', '''" "'ycm_path_to_python_interpreter', '${python}/bin/python'"
2015-06-01 10:14:47 +00:00
2016-01-08 21:38:23 +00: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
make ycm_core -j''${NIX_BUILD_CORES} -l''${NIX_BUILD_CORES}}
2016-01-08 21:38:23 +00:00
${python}/bin/python ../third_party/ycmd/build.py --gocode-completer --clang-completer --system-libclang
popd
2015-06-01 10:14:47 +00:00
'';
2015-06-01 10:14:47 +00: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];
platforms = stdenv.lib.platforms.unix;
2015-06-01 10:14:47 +00:00
};
};
2015-06-01 10:14:47 +00:00
2016-04-15 22:32:47 +00:00
vim-airline-themes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-airline-themes-2016-10-03";
2016-04-15 22:32:47 +00:00
src = fetchgit {
url = "git://github.com/vim-airline/vim-airline-themes";
rev = "3e8ecba0dea8b4ea35e81780a9aa00f2ca6823e8";
sha256 = "0dcf5pbysbfwrjf0ypnavw25h4k78y990l2j1ks1zbv6mpgg0kkw";
2016-04-15 22:32:47 +00:00
};
dependencies = [];
};
2015-10-02 08:26:46 +00:00
vim-pandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-pandoc-2016-09-13";
2015-10-02 08:26:46 +00:00
src = fetchgit {
url = "git://github.com/vim-pandoc/vim-pandoc";
rev = "035d0154fc9d5c974f810ee88a4b223c7e8bec31";
sha256 = "00hrwdm5p5bjgwi29xv3hs84sxajwzy9iql6yg02qw3pgzyfa7gv";
};
dependencies = [];
};
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 = "1379g174pvsaw1wdv1n18gby84sv59rsamfcgq9bqd4kg54g6h3j";
2015-10-02 08:26:46 +00:00
};
dependencies = [];
};
vim-pandoc-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-pandoc-syntax-2016-07-27";
2015-10-02 08:26:46 +00:00
src = fetchgit {
url = "git://github.com/vim-pandoc/vim-pandoc-syntax";
rev = "34339e2a5fe936549fa758546c40d7a906537a4b";
sha256 = "0mwhl2dn3hzj8275kaf01yjn401qb7nhi12lkdj7bdzmq856i1y1";
2015-10-02 08:26:46 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
Colour-Sampler-Pack = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Colour-Sampler-Pack-2012-11-29";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/vim-scripts/Colour-Sampler-Pack";
rev = "05cded87b2ef29aaa9e930230bb88e23abff4441";
2016-02-25 09:17:06 +00:00
sha256 = "03v2r18sfgs0xbgy9p56pxfdg0lsk6m7wyr5hw63wm1nzpwiipg3";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
a-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-15 22:43:54 +00:00
name = "a-vim-2010-11-06";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/vim-scripts/a.vim";
rev = "2cbe946206ec622d9d8cf2c99317f204c4d41885";
2016-02-25 09:17:06 +00:00
sha256 = "0h62v9z5bh9xmaq22pqdb3z79i84a5rknqm68mjpy7nq7s3q42fa";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-15 22:43:54 +00:00
name = "align-2012-08-07";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/vim-scripts/align";
rev = "787662fe90cd057942bc5b682fd70c87e1a9dd77";
2016-02-25 09:17:06 +00:00
sha256 = "0acacr572kfh7jvavbw61q5pkwrpi1albgancma063rpax1pddgp";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
2015-07-09 02:09:13 +00: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 09:17:06 +00:00
sha256 = "0pybhsg9k9252d4ifdc4gsar8lkmfzbvs6xkzqq1m6f35l9wqk09";
2015-07-09 02:09:13 +00:00
};
dependencies = [];
};
2015-07-29 18:58:17 +00: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 09:17:06 +00:00
sha256 = "1lzy2cq4jcrsqyxlnbnd0y6j4mabm09bi7q22lf6vinqlb84w7sp";
2015-07-29 18:58:17 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
tabmerge = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "tabmerge-2010-10-17";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/vim-scripts/tabmerge";
rev = "074e5f06f26e7108a0570071a0f938a821768c06";
2016-02-25 09:17:06 +00:00
sha256 = "0prkyza1n49cdaslcr57w8zv15vw78mlqbzib2xipmawzjq02idq";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
2015-07-29 18:58:17 +00: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 09:17:06 +00:00
sha256 = "01fdvfwdfqn5xi88lfanb4lb6jmn1ma6wq6d9jj2x7qamdbpvsrg";
2015-07-29 18:58:17 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-wakatime-2016-09-17";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/wakatime/vim-wakatime";
rev = "927ba8d2299a65ddab3e79644c48d06386dac2d5";
sha256 = "1qlzp5gdchvzvnjshh2sz2933wwhky8jdvg3j0rv6yyr95n14zff";
};
dependencies = [];
2015-06-01 10:14:47 +00:00
buildInputs = [ python ];
};
2015-06-01 10:14:47 +00:00
command-t = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-06-14 21:03:59 +00:00
name = "command-t-2016-06-14";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/wincent/command-t";
2016-06-14 21:03:59 +00:00
rev = "354c429dad34f7d163663943c948f819588b53d3";
sha256 = "1vkvc6ckza5b4ck52hv4rjclqi7x4f06dxkbqcqnia490m685v9q";
2015-03-26 18:16:21 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = [];
buildInputs = [ perl ruby ];
buildPhase = ''
pushd ruby/command-t
ruby extconf.rb
make
popd
'';
};
2015-06-01 10:14:47 +00:00
vim-easytags = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-easytags-2015-07-01";
src = fetchgit {
url = "git://github.com/xolox/vim-easytags";
rev = "72a8753b5d0a951e547c51b13633f680a95b5483";
sha256 = "0i8ha1fa5d860b1mi0xp8kwsgb0b9vbzcg1bldzv6s5xd9yyi12i";
};
dependencies = ["vim-misc"];
};
deoplete-jedi = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "deoplete-jedi-2016-10-04";
src = fetchgit {
url = "git://github.com/zchee/deoplete-jedi";
rev = "9df866cdf35eee085a3531c838659246ede686e9";
sha256 = "1qi91q0znz5qfq4f0rs07nkf5mf4x55gwb8fkk0hlfnly0qgba80";
};
dependencies = [];
};
goyo = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-04-15 22:32:47 +00:00
name = "goyo-2016-04-03";
src = fetchgit {
url = "git://github.com/junegunn/goyo.vim";
2016-04-15 22:32:47 +00:00
rev = "8e8f1d45b61e1fce7f84ee061c38f9e033e86ff9";
sha256 = "120farhbfyzd7k1s1i68drwa5zzzm9yrcwzw45gwa2j7kqbv4hnx";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
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";
};
2015-06-01 10:14:47 +00:00
unpackPhase = ''
(
sourceRoot=d
mkdir $sourceRoot; cd $sourceRoot;
unzip $src
)
'';
};
2015-06-01 10:14:47 +00:00
pathogen = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-02-25 09:17:06 +00:00
name = "pathogen-2016-01-26";
src = fetchgit {
url = "git://github.com/tpope/vim-pathogen";
2016-02-25 09:17:06 +00:00
rev = "8c91196cfd9c8fe619f35fac6f2ac81be10677f8";
sha256 = "17d1903spczg2rk0qzg94vvq41dwhmnxwajqgzcx4lmf606cfspi";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
quickfixstatus = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "quickfixstatus-2011-09-02";
src = fetchgit {
url = "git://github.com/dannyob/quickfixstatus";
rev = "fd3875b914fc51bbefefa8c4995588c088163053";
2016-02-25 09:17:06 +00:00
sha256 = "16vxhvyxq51y7wnx0c1fmdi2yb6kfr1pxijq65gxj8qwvbak2s3v";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
rainbow_parentheses = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "rainbow_parentheses-2013-03-04";
src = fetchgit {
url = "git://github.com/kien/rainbow_parentheses.vim";
rev = "eb8baa5428bde10ecc1cb14eed1d6e16f5f24695";
2016-02-25 09:17:06 +00:00
sha256 = "1qw84imlhq4654mxazj7j3sp5g1j3yjxi496i08iix06dm15m5s7";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
sensible = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "sensible-2016-09-05";
2015-02-08 15:12:59 +00:00
src = fetchgit {
url = "git://github.com/tpope/vim-sensible";
rev = "4b7535921819a5b2e39be68f81109ea684232503";
sha256 = "0ghds721dawm8mcd8cp23hfqpgiznh811z73zxlqrm1sg2fmdq1s";
2015-02-08 15:12:59 +00:00
};
dependencies = [];
2015-03-26 18:16:21 +00:00
2015-02-08 15:12:59 +00:00
};
2015-06-01 10:14:47 +00:00
2015-07-03 08:11:22 +00:00
sleuth = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "sleuth-2015-06-07";
src = fetchgit {
url = "git://github.com/tpope/vim-sleuth";
rev = "a17462708aa40a7fc0afd4effa559087d8a2c908";
sha256 = "12s7nl3c15i9wyinhzw9biymsyw74akx96nzix9p9979nxhmi09m";
2015-07-03 08:11:22 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
snipmate = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "snipmate-2016-09-01";
src = fetchgit {
url = "git://github.com/garbas/vim-snipmate";
rev = "31986191ac9923afcd53bf6425c9b6c35fdbb214";
sha256 = "1l48h5xmkx412bm29mvl6kz11n7xbkk37ph8v5vgdws380d0fiag";
2014-10-21 12:24:30 +00:00
};
dependencies = ["vim-addon-mw-utils" "tlib"];
2014-08-13 17:58:25 +00:00
};
2015-06-01 10:14:47 +00:00
sourcemap = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "sourcemap-2012-09-19";
src = fetchgit {
url = "git://github.com/chikatoike/sourcemap.vim";
rev = "0dd82d40faea2fdb0771067f46c01deb41610ba1";
2016-02-25 09:17:06 +00:00
sha256 = "1gcgnynallz420911fdfm0ccbv3zs78p69nnh2ls1r4vlfp7g350";
};
dependencies = [];
2014-08-13 17:58:25 +00:00
};
2015-06-01 10:14:47 +00:00
surround = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-06-14 21:03:59 +00:00
name = "surround-2016-06-01";
2014-08-13 17:58:25 +00:00
src = fetchgit {
url = "git://github.com/tpope/vim-surround";
2016-06-14 21:03:59 +00:00
rev = "e49d6c2459e0f5569ff2d533b4df995dd7f98313";
sha256 = "1v0q2f1n8ngbja3wpjvqp2jh89pb5ij731qmm18k41nhgz6hhm46";
2014-11-20 20:49:17 +00:00
};
dependencies = [];
2014-11-20 20:49:17 +00:00
};
2015-06-01 10:14:47 +00:00
table-mode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "table-mode-2016-09-28";
src = fetchgit {
url = "git://github.com/dhruvasagar/vim-table-mode";
rev = "441c30c35aec9d5c2de1d58a77a7d22aa8d93b06";
sha256 = "04fdd2hgrcrgqqflzlvv7j9c53m8f2divi075p75g6grkxxyninv";
2015-02-05 23:54:54 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00: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
'';
};
tlib = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "tlib-2016-08-07";
src = fetchgit {
url = "git://github.com/tomtom/tlib_vim";
rev = "8c74564396e368788a5cb901b0e8017a3166cee9";
sha256 = "15bh6q8g7p1giz2lybqhdf7a7xisqwpr751gprqx3vmh97drry5z";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "undotree-2016-07-19";
2014-11-20 20:49:17 +00:00
src = fetchgit {
url = "git://github.com/mbbill/undotree";
rev = "17dfeb6aeacc40036567d29c691898ac57b09182";
sha256 = "0xmc95h5nbmjx6hvfd9lvkz8hdp8fw5xm5c7wcyy5f0rg7b6l68x";
2014-10-21 12:24:30 +00:00
};
2014-11-20 20:49:17 +00:00
dependencies = [];
2014-08-13 17:58:25 +00:00
2015-02-05 23:54:54 +00:00
};
2015-06-01 10:14:47 +00: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";
sha256 = "1wfkwr89sn2w97i94d0dqylcg9mr6pirjadi0a4l492nfnsh99bc";
};
dependencies = ["vim-addon-mw-utils" "tlib"];
};
2015-06-01 10:14:47 +00:00
vim-addon-async = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-async-2016-07-12";
2014-11-20 20:49:17 +00:00
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-async";
rev = "b14414215b394a0ef887ea301085ae4b80012e38";
sha256 = "1gr0rjn1vwqv4p51yb0s65gnpy1r0533lfy5nqbg20j4687yxls5";
2014-10-20 06:55:25 +00:00
};
dependencies = ["vim-addon-signs"];
2014-10-20 06:55:25 +00:00
2015-02-05 23:54:54 +00:00
};
2015-06-01 10:14:47 +00:00
2015-12-11 18:31:40 +00: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";
sha256 = "0csy68x686l3x5ancidxb5b6prg9k7ikybqzq3klx0gs5rmksfy4";
2015-12-11 18:31:40 +00:00
};
dependencies = ["vim-addon-mw-utils"];
};
2015-06-01 10:14:47 +00:00
vim-addon-commenting = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "vim-addon-commenting-2013-06-10";
2014-11-20 20:49:17 +00:00
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-commenting";
rev = "b7cf748ac1c9bf555cbd347589e3b7196030d20b";
sha256 = "0alak8h33vada2ckb0v06y82qlib5mhyc2yswlv1rqh8ypzhq3mc";
2014-11-20 20:49:17 +00:00
};
dependencies = [];
2014-08-13 17:58:25 +00:00
2015-02-05 23:54:54 +00:00
};
2015-06-01 10:14:47 +00:00
vim-addon-completion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "vim-addon-completion-2015-02-10";
2015-02-05 23:54:54 +00:00
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-completion";
2015-03-26 18:16:21 +00:00
rev = "021c449a5ce1ce4ac0af5955e05b0279c1cc0e75";
sha256 = "1ld059y2qwlc5bdfjm2p314s1qh31lxs54g944pw49r46s5nlslr";
2015-02-05 23:54:54 +00:00
};
dependencies = ["tlib"];
};
2015-06-01 10:14:47 +00: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 09:17:06 +00:00
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 = "1ksm2b0j80zn8sz2y227bpcx4jsv76lwgr2gpgy2drlyqhn2vlv0";
};
dependencies = ["tlib"];
};
2015-06-01 10:14:47 +00:00
vim-addon-local-vimrc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "vim-addon-local-vimrc-2015-03-19";
2014-11-20 20:49:17 +00:00
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-local-vimrc";
2015-03-26 18:16:21 +00:00
rev = "6a27f95b35befa70cd0d049329cd0920566c764b";
2016-02-25 09:17:06 +00:00
sha256 = "0n8lwl1gyak149p7jpgm0qbmfj8hcg8hirx3dxdhizw0yc47ws7h";
2014-11-20 20:49:17 +00:00
};
dependencies = [];
2014-08-13 17:58:25 +00:00
};
2015-06-01 10:14:47 +00:00
vim-addon-manager = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-02-25 09:17:06 +00:00
name = "vim-addon-manager-2016-02-07";
2014-08-15 17:45:32 +00:00
src = fetchgit {
2014-11-20 20:49:17 +00:00
url = "git://github.com/MarcWeber/vim-addon-manager";
2016-02-25 09:17:06 +00:00
rev = "872f9302cf0eb8e9cb6259ea4f329d2265f9e32d";
sha256 = "14aixpj9p8b568mdh4pl7bmpw1rsc4d7axqr09g1m0a8q6rxipc7";
2014-11-20 20:49:17 +00:00
};
dependencies = [];
2016-01-08 21:38:23 +00:00
buildInputs = stdenv.lib.optional stdenv.isDarwin Cocoa;
};
2015-06-01 10:14:47 +00:00
vim-addon-mru = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "vim-addon-mru-2013-08-08";
2014-11-20 20:49:17 +00:00
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-mru";
rev = "e41e39bd9d1bf78ccfd8d5e1bc05ae5e1026c2bb";
2016-02-25 09:17:06 +00:00
sha256 = "0q6rxr9nrp63kidr3m3c2z5sda4g813pzshg0scxkjr8dxwhzdqm";
2014-11-20 20:49:17 +00:00
};
dependencies = ["vim-addon-other" "vim-addon-mw-utils"];
2014-08-15 17:45:32 +00:00
};
2015-06-01 10:14:47 +00:00
vim-addon-mw-utils = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "vim-addon-mw-utils-2012-11-05";
2014-11-20 20:49:17 +00:00
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-mw-utils";
rev = "0c5612fa31ee434ba055e21c76f456244b3b5109";
sha256 = "147s1k4n45d3x281vj35l26sv4waxjlpqdn83z3k9n51556h1d45";
2014-10-20 06:55:25 +00:00
};
2014-11-20 20:49:17 +00:00
dependencies = [];
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
};
2015-06-01 10:14:47 +00:00
vim-addon-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "vim-addon-nix-2015-03-10";
2014-11-20 20:49:17 +00:00
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-nix";
2015-03-26 18:16:21 +00:00
rev = "2aed79ba5d8c5e6abd102de77e55e242f61b17f1";
sha256 = "0zx1q9994py6jmm0qbbx6fc1dy5la8zfskkbvqqxssxrl5dx7vvi";
2014-11-20 20:49:17 +00:00
};
dependencies = ["vim-addon-completion" "vim-addon-goto-thing-at-cursor" "vim-addon-errorformats" "vim-addon-actions" "vim-addon-mw-utils" "tlib"];
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
};
2015-06-01 10:14:47 +00:00
vim-addon-other = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "vim-addon-other-2014-07-15";
2014-11-20 20:49:17 +00:00
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-other";
rev = "f78720c9cb5bf871cabb13c7cbf94378dbf0163b";
sha256 = "0cjz7mlyfkkncas4ss7rwxb0q38ls1qw1p15hac1imscscsvyjc6";
2014-11-20 20:49:17 +00:00
};
dependencies = ["vim-addon-actions" "vim-addon-mw-utils"];
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
};
2015-06-01 10:14:47 +00:00
vim-addon-php-manual = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "vim-addon-php-manual-2015-01-01";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
src = fetchgit {
2014-11-20 20:49:17 +00:00
url = "git://github.com/MarcWeber/vim-addon-php-manual";
2015-02-05 23:54:54 +00:00
rev = "5f9810dd1f6e9f36a45f637ae6260ccff09256ff";
2016-02-25 09:17:06 +00:00
sha256 = "1kc67f12wccqdza069b75lpcbqp4kv4r23i4mfz0ihwif5mfnhir";
2015-02-05 23:54:54 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
2015-12-11 18:31:40 +00: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";
sha256 = "0i4gfp30hmw1vqjl6zxjrgkca3ikdkcnjmma2mncjmcr6f59kjzy";
2015-12-11 18:31:40 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-addon-sql = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "vim-addon-sql-2014-01-18";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-sql";
rev = "05b8a0c211f1ae4c515c64e91dec555cdf20d90b";
sha256 = "15l2201jkfml08znvkkpy7fm3wn87n91zgd9ysrf5h73amjx9y2w";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
};
dependencies = ["vim-addon-completion" "vim-addon-background-cmd" "tlib"];
2014-11-20 20:49:17 +00:00
};
2015-06-01 10:14:47 +00:00
vim-addon-syntax-checker = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "vim-addon-syntax-checker-2013-07-12";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
src = fetchgit {
2014-11-20 20:49:17 +00:00
url = "git://github.com/MarcWeber/vim-addon-syntax-checker";
rev = "8eb7217e636ca717d4de5cd03cc0180c5b66ae77";
2016-02-25 09:17:06 +00:00
sha256 = "0gcvb922w4jsi203ygbnij9xhmgc6knj9b3ivw3m0fv5ckk4iw5f";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
};
dependencies = ["vim-addon-mw-utils" "tlib"];
2014-11-20 20:49:17 +00:00
};
2015-06-01 10:14:47 +00:00
vim-addon-toggle-buffer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "vim-addon-toggle-buffer-2012-01-13";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
src = fetchgit {
2014-11-20 20:49:17 +00:00
url = "git://github.com/MarcWeber/vim-addon-toggle-buffer";
rev = "a1b38b9c5709cba666ed2d84ef06548f675c6b0b";
sha256 = "1xq38kfdm36c34ln66znw841q797w5gm8bpq1x64bsf2h6n3ml03";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
};
dependencies = ["vim-addon-mw-utils" "tlib"];
2014-11-20 20:49:17 +00:00
};
2015-06-01 10:14:47 +00:00
vim-addon-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "vim-addon-xdebug-2014-08-29";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
src = fetchgit {
2014-11-20 20:49:17 +00:00
url = "git://github.com/MarcWeber/vim-addon-xdebug";
rev = "45f26407305b4ce6f8f5f37d2b5e6e4354104172";
sha256 = "1i64ppdfp2qqq7vw1jf160mj4ikc04v39iazdab83xmiqjsh8ixw";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
};
dependencies = ["WebAPI" "vim-addon-mw-utils" "vim-addon-signs" "vim-addon-async"];
2014-11-20 20:49:17 +00:00
};
2015-06-01 10:14:47 +00:00
vim-airline = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-airline-2016-09-28";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
src = fetchgit {
2016-04-15 22:32:47 +00:00
url = "git://github.com/vim-airline/vim-airline";
rev = "2be9a044e09f68bef0eb4dff27af7d22405968fe";
sha256 = "0n9p2pdh9cw6lfhf43nh71g8r73smnq65c0kadr88ywa54y92bxg";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
};
2014-11-20 20:49:17 +00:00
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-coffee-script-2016-09-19";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
src = fetchgit {
2014-11-20 20:49:17 +00:00
url = "git://github.com/kchmck/vim-coffee-script";
rev = "b91dbe92ad794a85a03b089f384fa324ff4e0c3d";
sha256 = "0rkv0n9r3rczx1269i9nf4xs3q934n7iqnrykhnlqbl255s5agd4";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
};
dependencies = [];
2014-11-20 20:49:17 +00:00
};
2015-06-01 10:14:47 +00:00
vim-easy-align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-03-09 17:24:06 +00:00
name = "vim-easy-align-2016-03-06";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
src = fetchgit {
2014-11-20 20:49:17 +00:00
url = "git://github.com/junegunn/vim-easy-align";
2016-03-09 17:24:06 +00:00
rev = "0cb6b98fc155717b0a56c110551ac57d1d951ddb";
sha256 = "10j1fz7si7xqqs4p7h66jd0xzr116cv3xjyac9p20fc0yyyg1wbh";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
};
dependencies = [];
2014-11-20 20:49:17 +00:00
2015-05-11 19:46:41 +00:00
};
2015-06-01 10:14:47 +00:00
vim-gista = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-gista-2016-09-21";
2015-05-11 19:46:41 +00:00
src = fetchgit {
url = "git://github.com/lambdalisue/vim-gista";
rev = "8f27e74bd1f8edb3ca5711864b34cb4c526d9947";
sha256 = "0zymx6ww6yc9h06k373z7mbv07jmi66zv1cm15ip2qnik1nr80p7";
2015-05-11 19:46:41 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-gitgutter-2016-09-30";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
src = fetchgit {
2014-11-20 20:49:17 +00:00
url = "git://github.com/airblade/vim-gitgutter";
rev = "4f9c5b0f3e2a20081edc1ec60a79640f7d55e3e0";
sha256 = "1bd7vvljgrbs6phwa8axpzzfhf4kcczmp0i1wwv3rn35sklnqc47";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
};
2014-11-20 20:49:17 +00:00
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-iced-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "vim-iced-coffee-script-2013-12-27";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
src = fetchgit {
2014-11-20 20:49:17 +00:00
url = "git://github.com/noc7c9/vim-iced-coffee-script";
rev = "e42e0775fa4b1f8840c55cd36ac3d1cedbc1dea2";
2016-02-25 09:17:06 +00:00
sha256 = "14yfirny359rlrr082il2ys3hxiyrbbk794rdxrs2lasjy8rb1f7";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
};
dependencies = [];
2014-11-20 20:49:17 +00:00
};
2015-06-01 10:14:47 +00:00
vim-latex-live-preview = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-04-15 22:32:47 +00:00
name = "vim-latex-live-preview-2016-03-16";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
src = fetchgit {
2014-11-20 20:49:17 +00:00
url = "git://github.com/xuhdev/vim-latex-live-preview";
2016-04-15 22:32:47 +00:00
rev = "99501642c1dd3f703ac6301ae13469f4990b7a06";
sha256 = "0dkm3v1jqi8aq0jfpa6fdwgbfbwidc32ci1y9vhqb1prs15qrqfl";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
};
2014-11-20 20:49:17 +00:00
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-misc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-misc-2015-05-21";
src = fetchgit {
url = "git://github.com/xolox/vim-misc";
rev = "3e6b8fb6f03f13434543ce1f5d24f6a5d3f34f0b";
sha256 = "0rd9788dyfc58py50xbiaz5j7nphyvf3rpp3yal7yq2dhf0awwfi";
};
dependencies = [];
};
2015-07-29 18:58:17 +00:00
vim-multiple-cursors = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2016-06-14 21:03:59 +00:00
name = "vim-multiple-cursors-2016-06-03";
2015-07-29 18:58:17 +00:00
src = fetchgit {
url = "git://github.com/terryma/vim-multiple-cursors";
2016-06-14 21:03:59 +00:00
rev = "51d0717f63cc231f11b4b63ee5b611f589dce1b3";
sha256 = "1s06wp4cjdmfvljzd9gz0wawkfcpkj8l2scjdx626ml740pnhmx8";
2015-07-29 18:58:17 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-signature = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-signature-2016-07-25";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
src = fetchgit {
2014-11-20 20:49:17 +00:00
url = "git://github.com/kshenoy/vim-signature";
rev = "537651a3a6dac10442f3e5ea2bb55a0bfd3324a6";
sha256 = "0s0m75h8jqk0jykhhnjpw02ynvxw5pnsyjv0zb7n0azv96dvvznk";
2015-03-28 17:44:35 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-signify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-signify-2016-09-28";
src = fetchgit {
url = "git://github.com/mhinz/vim-signify";
rev = "faf7a0307180ec10418fa0eae85e68b526eed267";
sha256 = "18wklbvx632d106wbnkh06qpvkkh6zdxsgp5cvrqwfk73scwkgh5";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-snippets-2016-10-04";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
src = fetchgit {
2014-11-20 20:49:17 +00:00
url = "git://github.com/honza/vim-snippets";
rev = "0acb605c5fa6058403fb2510c807b17b9a27d460";
sha256 = "0jdjcqigsv6dsvpc4zbavpwhx71f1g84zmwysgvsyraiqdiakq7z";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
};
2014-11-20 20:49:17 +00:00
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-webdevicons = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-webdevicons-2016-10-01";
src = fetchgit {
url = "git://github.com/ryanoasis/vim-devicons";
rev = "77bf4cef436955fb40719526746f3ba718c6fa36";
sha256 = "0i3rdz08xs8nia0n0m9xd2hdipnb8khrr9zb3bxvhvzd32rfqfv5";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim2hs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "vim2hs-2014-04-16";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
src = fetchgit {
url = "git://github.com/dag/vim2hs";
rev = "f2afd55704bfe0a2d66e6b270d247e9b8a7b1664";
sha256 = "18lqrl3hqb6cmizc04bbnsh8j0g761w2q8wascbzzfw80dmxy36b";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
};
dependencies = [];
2014-11-20 20:49:17 +00:00
};
2015-06-01 10:14:47 +00:00
2015-08-06 01:56:46 +00:00
vimwiki = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vimwiki-2016-05-18";
2015-08-06 01:56:46 +00:00
src = fetchgit {
url = "git://github.com/vimwiki/vimwiki";
rev = "4831384ab9f1c40c9e433857d958c4d9a7beb8ec";
sha256 = "1wjbsd37h5fxkkia90h708mmqisdj0kxzm9k97jm2zq36zngmd86";
2015-08-06 01:56:46 +00:00
};
dependencies = [];
};
2016-02-07 06:38:24 +00:00
vinegar = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vinegar-2016-06-30";
2016-02-07 06:38:24 +00:00
src = fetchgit {
url = "git://github.com/tpope/vim-vinegar";
rev = "bd7f7b7929260072864462c04dde3b9f4c5e0d23";
sha256 = "09shzlc9dagqlb5558nvm33b4bkk9cy34kp7zgnybphyy72wf31h";
2016-02-07 06:38:24 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vundle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vundle-2016-08-05";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
src = fetchgit {
2014-11-20 20:49:17 +00:00
url = "git://github.com/gmarik/vundle";
rev = "fef1c2f31862c44cf5295ef86c086efba4af20a9";
sha256 = "18prk9axxj418hjh1yflijww39bgbvf3vq7z6a1501wq88d7z8zs";
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
};
dependencies = [];
2014-11-20 20:49:17 +00:00
experimental/vim-vam-pathogen-vimrc-support This patch implements derving a .vimrc from vim-plugins.nix loading those plugins by either Pathogen or VAM (VAM seems to be slightly faster and is much more powerful). Example: environment.systemPackages = [ # default plain vim vim_configurable # vim which get's called vim-with-addon-nix (vim_configurable.customize { name = "vim-with-addon-nix"; vimrcConfig.vam.pluginDictionaries = [{name = "vim-addon-nix"; }]; }) ]; This way you can provide an "enhanced Vim" and a standard Vim. Details about what this commit changes: 1) provide a new toplevel name vimrc which * provides a way to build up a .vimrc using either pathogen or VAM (knowing about plugin dependencies by name) * can enhance vim to support. vim.customize { name = "name-user"; vam.pluginDictionaries and/or pathogen.pluginNames = .. } * introduce rtp names for each vim plugin pointing to the runtimepath path * suggest naming to be the same as vim-pi so that VAM's dependencies work * derive some packages as example from vim-pi using VAM's new autoload/nix.vim supporting simple dependencies * test case for vim-addon-nix for VAM/pathogen 2) enhance vim_configurable to support .customize 3) update many plugins by using VAM's implementation not rewriting those which * vim-pi doesn't know about the git source yet (TODO: make vim-pi be aware of those) * have special build code This commit partially conflicts with commits done by Bjørn Forsman starting by 37f961628b, eg the one using lower case attr and pkg names, because they don't match vim-pi (eg YouCompleteMe). Rather than resolving the conflict this just adds aliases so that both names can be used
2014-11-08 18:34:13 +00:00
};
}