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

1365 lines
45 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
{ fetchurl, bash, stdenv, python, cmake, vim, vimUtils, perl, ruby, unzip,
2015-02-16 01:20:10 +00:00
which, fetchgit, fetchFromGitHub, fetchhg, fetchzip, llvmPackages, zip,
2015-03-26 18:16:21 +00:00
vim_configurable, vimPlugins, xkb_switch, git
}:
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
# Generate via `vim-plugin-names-to-nix`
# If plugin is complicated then create a PR to
# https://github.com/jagajaga/vim-addon-vim2nix/tree/master/additional-nix-code
# This attrs contains two sections:
# The first contains plugins added manually, the second contains plugins
# generated by call nix#ExportPluginsForNix.
# Documentation & usage see vim-utils.nix.
# attribute names should be the same as used by vim-pi to make dependency
# resolution work
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
# 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
easy-align = vim-easy-align;
easymotion = vim-easymotion;
eighties = vim-eighties;
ghc-mod-vim = ghcmod;
gist-vim = Gist;
gitgutter = vim-gitgutter;
gundo = Gundo;
haskellConceal = haskellconceal; # backwards compat, added 2014-10-18
haskellconceal = vim-haskellconceal;
hier = vim-hier;
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;
quickrun = vim-quickrun;
signature = vim-signature;
stylish-haskell = vim-stylish-haskell;
stylishHaskell = stylish-haskell; # backwards compat, added 2014-10-18
supertab = Supertab;
syntastic = Syntastic;
tabular = Tabular;
tagbar = Tagbar;
2015-06-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;
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;
2015-07-03 08:08:22 +00:00
CSApprox = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "CSApprox-2013-07-26";
src = fetchgit {
url = "git://github.com/godlygeek/csapprox";
rev = "7981dac51d8b6776985aa08cb7b5ee98ea7f2ddd";
sha256 = "8ccb47eb79c7ab63109d32158388812bdca340985527af4f2a5489ff8683389f";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
Gist = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-26 23:05:15 +00:00
name = "Gist-2015-06-24";
2015-06-01 10:14:47 +00:00
src = fetchgit {
url = "git://github.com/mattn/gist-vim";
2015-06-26 23:05:15 +00:00
rev = "297c4b90511b6daf7b35c219652a56ac2f0209ee";
sha256 = "f7da15fd5c4dbd0e7fb5a66b7212f11db1f05ccbe53ccc06c9d3b1d4bd205923";
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
Gundo = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Gundo";
src = fetchhg {
url = "https://bitbucket.org/sjl/gundo.vim";
rev = "eb9fc8676b89";
sha256 = "05lcxrd9ibfi02ja4jvl5y5pp884b8kh9aarw045b0mlldygv6cp";
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
Hoogle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Hoogle-2013-11-26";
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";
rev = "81f28318b0d4174984c33df99db7752891c5c4e9";
sha256 = "0f96f3badb6218cac87d0f7027ff032ecc74f08ad3ada542898278ce11cbd5a0";
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";
sha256 = "a1b2ef696eee94dafa76431c31ee260acdd13a7cf87939f27eca431d5aa5a315";
};
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
name = "Supertab-2015-02-15";
2014-10-21 12:24:30 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/ervandew/supertab";
rev = "c8bfeceb1fc92ad58f2ae6967cbfcd6fbcb0d6e7";
sha256 = "e9e4054c683435b36adf87bebb4895c06a7e85130a807d8c9307588d4744b04b";
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
2015-06-26 23:05:15 +00:00
name = "Syntastic-2015-06-26";
2015-03-26 18:16:21 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/scrooloose/syntastic";
2015-06-26 23:05:15 +00:00
rev = "8e672780e76c0a774b7fe834eed9652ccd684c24";
sha256 = "10b113c456387ebe2b08f81f6464408382a525d9b37e4e6b3fd54808dd25c1a4";
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-2013-05-16";
src = fetchgit {
url = "git://github.com/godlygeek/tabular";
rev = "60f25648814f0695eeb6c1040d97adca93c4e0bb";
sha256 = "28c860ad621587f2c3213fae47d1a3997746527c17d51e9ab94c209eb7bfeb0f";
};
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
2015-06-26 23:05:15 +00:00
name = "Tagbar-2015-06-19";
2013-12-16 01:21:23 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/majutsushi/tagbar";
2015-06-26 23:05:15 +00:00
rev = "7b36c46d17d57db34fdb0adac9ba6382d0bb5e66";
sha256 = "346773e772772d1c68318effd8e6c8c8b36f61cfd9c72a85c0bfcec9843f13c7";
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-2014-07-08";
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 = "6549cfde45339bd4f711504196ff3e8b766ef5e6";
sha256 = "ef270ae5617237d68b3d618068e758af8ffd8d3ba27a3799149f7a106cfd178e";
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
2015-06-26 23:05:15 +00:00
name = "The_NERD_tree-2015-06-17";
2014-10-20 06:55:25 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/scrooloose/nerdtree";
2015-06-26 23:05:15 +00:00
rev = "96c07746b46c12d0aca7a5276cc5bd0a260b82fe";
sha256 = "0a3854121674fed598b21154f749a5eadd590a2e5632dd6fc8a9307bdb4cf4d8";
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
2015-06-15 22:43:54 +00:00
name = "UltiSnips-2015-06-11";
2014-10-20 06:55:25 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/sirver/ultisnips";
2015-06-15 22:43:54 +00:00
rev = "c3a0924b777dbba2f8612950bd8f8a00df18d1bf";
sha256 = "7ad0e5dc8e8713db38ef2875e5d512e6cf8ef3dd7885ce12aff22052da780593";
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-2015-01-09";
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 = "7c995f973c54b0d026137615af28059890edb197";
sha256 = "9d1526ec99904fd2ccfdb4dd6763b4cd04048cb74bb7a0a4c9b4a7b1f5d75cb5";
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-2015-05-14";
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 = "6d577e49aeb81b4ede280161ca1e550c9328d098";
sha256 = "cb57200ada38ff5388e043075e900d3794020bb6f063a2845c71993e5543862a";
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 {
url = "http://www.vim.org/scripts/download_script.php?src_id=20842";
name = "yankring_180.zip";
sha256 = "0bsq4pxagy12jqxzs7gcf25k5ahwif13ayb9k8clyhm0jjdkf0la";
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
2014-10-20 06:55:25 +00:00
};
2015-06-01 10:14:47 +00:00
commentary = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "commentary-2014-11-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";
rev = "9c685131a5facfa0d643feca3a61b41c007d8170";
sha256 = "2a9f394d0669429469c2f1ddaf9a722c2773f35da08ea9496d3b4b4e85b6038d";
};
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
ctrlp = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "ctrlp-2013-07-29";
2014-10-21 12:24:30 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/kien/ctrlp.vim";
rev = "b5d3fe66a58a13d2ff8b6391f4387608496a030f";
sha256 = "41f7884973770552395b96f8693da70999dc815462d4018c560d3ff6be462e76";
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
extradite = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "extradite-2015-01-26";
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";
rev = "a1dc4b63befd5032e65a0c94e7257d4636aa6a3f";
sha256 = "94e05bbe36c9d4cee9832530531eedff0da509d5a0a52beee4e524fd4ad96714";
};
2015-06-01 10:14:47 +00:00
dependencies = [];
};
2015-06-01 10:14:47 +00:00
fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-15 22:43:54 +00:00
name = "fugitive-2015-06-14";
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";
2015-06-15 22:43:54 +00:00
rev = "1c844375fa2762e3b7c16294fa36afee6fef28b1";
sha256 = "fa02d055243a386fe3fdb5069f36d3f035ace3594c1b1dd4a4bbc61df232fb97";
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-2015-03-17";
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 = "7e5f6102aa709244f5d4cedec807eac4b901c4cb";
sha256 = "47c5f5c4bf73dca653550b460306fa3808d864a685903bdb95ba07a6e1cd2899";
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
2015-06-01 10:14:47 +00:00
vim-addon-vim2nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-15 22:43:54 +00:00
name = "vim-addon-vim2nix-2015-06-16";
2014-11-20 20:49:17 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/JagaJaga/vim-addon-vim2nix";
2015-06-15 22:43:54 +00:00
rev = "046702653f7af5829a3f3fda3b7cf89c2a8d03b5";
sha256 = "b92068c32ce14e75159070acbd86c52e09aaa65a523fd566e44762ed33403161";
2014-11-20 20:49:17 +00:00
};
2015-06-01 10:14:47 +00:00
dependencies = ["vim-addon-manager"];
2014-11-20 20:49:17 +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
lushtags = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "lushtags-2013-12-27";
2014-11-18 22:05:30 +00:00
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/bitc/lushtags";
rev = "429fab3b748ae04ee5de0cbf75d947f15441e798";
sha256 = "5170019fbe64b15be30a0ba82e6b01364d115ccad6ef690a6df86f73af22a0a7";
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-03-26 18:16:21 +00:00
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";
sha256 = "bf5f096b665c51ce611c6c1bfddc3267c4b2f94af84b04482b07272a6a5a92f3";
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-2015-05-29";
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 = "176452ead44118174ddad3502709a247d9c24bb4";
sha256 = "789c8b24b971a3b307ac296234230f1048ff2928c89302700bd4e5fc2edd2d8a";
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-06-01 10:14:47 +00:00
neco-ghc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neco-ghc-2015-04-07";
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 = "a45f4f98ee3f25eaa64a39328c253d4f78cd5fda";
sha256 = "50bd8530b435c3ba0e0f01b230d7717074002ec229ddcc0cb20ee59ef2a28d59";
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";
sha256 = "4bfd80720c353884e5c373b5457397a63e5e2e4ab4a97d6ce86c1740ac3b4c56";
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
2015-06-01 10:14:47 +00:00
idris-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-26 23:05:15 +00:00
name = "idris-vim-2015-06-23";
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";
2015-06-26 23:05:15 +00:00
rev = "4c1723c34a434aad2455c7c2f2a30d97ed691191";
sha256 = "db09ad5a7c75d9ac2ccb1be2b85d6ed9cd507ec0fc736e994d8d315c5916170d";
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-2015-05-21";
src = fetchgit {
url = "git://github.com/itchyny/calendar.vim";
rev = "394c789d2235a7a056ba527daf722e9119cac1c8";
sha256 = "dfefb8d479096baa755185546624fffdd9c843da9c4fdbf17f213cdba599c08e";
};
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-2015-03-15";
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";
2015-03-26 18:16:21 +00:00
rev = "19bd717307a8d0986a4a77116f47168fbe11e178";
sha256 = "c8c100e1b0ee9c75fc3b6db00b68c47d91bcca8979f6de046aade43fd09e3882";
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 = "7f59c3edde4c2b8555d703c96e855ca36665aacdca5a30d1e9e21c31bc252f2d";
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";
sha256 = "f62836545abfe379f9c5410da28409947407cd282ef784b2db89aed0756a1785";
};
2015-06-01 10:14:47 +00:00
dependencies = [];
buildInputs = [ vim ];
};
2015-06-01 10:14:47 +00:00
vim-buffergator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-buffergator-2015-03-31";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/jeetsukumaran/vim-buffergator";
rev = "77cfdd127fcf026ea2d5e8f5aaf85502286b16b7";
sha256 = "2d3ce83b5ea7d0502cea3e91bf1e2a0b27a046879c1b5ff1854df47028dd4d48";
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
name = "tslime-vim-2015-02-10";
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";
rev = "71ec1cbe8f9ead9805f8e0c3b76c590aeb5ed0b7";
sha256 = "81f45f579dcc239ce0b9689044d0e92969f7538759ab0cd88596c7a010d8730b";
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-07-20 19:58:56 +00:00
vim-multiple-cursors = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-multiple-cursors-2015-05-29";
src = fetchgit {
url = "git://github.com/terryma/vim-multiple-cursors";
rev = "3199d34f57e1e20d2dd807b31a5a72d7f7d42e96";
sha256 = "26b43c921b416cc19482d03435516d42a209ab104bac9979b073d0db61e95186";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-nerdtree-tabs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-nerdtree-tabs-2014-09-25";
src = fetchgit {
url = "git://github.com/jistr/vim-nerdtree-tabs";
rev = "0decec122e9bb3e9328b01fa20a9650e79cc6ca7";
sha256 = "ac4bfc3ae18e8a62ef8e20d0dd0a0f7c172d0ebd5fed58c533ccccec3ae7bdc2";
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
};
2015-06-01 10:14:47 +00:00
vim-golang = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-golang-2014-08-06";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/jnwhiteh/vim-golang";
rev = "e6d0c6a72a66af2674b96233c4747661e0f47a8c";
sha256 = "1231a2eff780dbff4f885fcb4f656f7dd70597e1037ca800470de03bf0c5e7af";
};
2015-06-01 10:14:47 +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";
sha256 = "1ccb0e63eaf68548feb1c37b09c07c84b6bea9b350c4257549f091aa414601e2";
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
};
2015-06-01 10:14:47 +00:00
vim-eighties = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-15 22:43:54 +00:00
name = "vim-eighties-2015-06-15";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/justincampbell/vim-eighties";
2015-06-15 22:43:54 +00:00
rev = "68dc644664bf569e96ac91f79fdf828e89d70e02";
sha256 = "d6600665179395141d660c65dad3e03c13aeba164a6c1e6fabfc9e2499588132";
};
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 = "8af2c45209c39438da8481183a1f14885891db73454bb4b16d24799453184e81";
};
dependencies = [];
2015-06-01 10:14:47 +00:00
};
2015-06-01 10:14:47 +00:00
vim-jinja = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-jinja-2014-06-11";
src = fetchgit {
url = "git://github.com/lepture/vim-jinja";
rev = "4412484b410b15caecd71f2e52758b2a90ea124d";
sha256 = "650c7f23688e8982f30be3f7d45b73d9c1d283f10a6829e518e2583b4a52befc";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-easymotion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-26 23:05:15 +00:00
name = "vim-easymotion-2015-06-22";
2015-06-01 10:14:47 +00:00
src = fetchgit {
url = "git://github.com/lokaltog/vim-easymotion";
2015-06-26 23:05:15 +00:00
rev = "ef0cb2b0a0feee865e70c42fdaf03a4f8e621f38";
sha256 = "13f0d18f0c822dc7ba99f2365539de1e2c63817b89a6d0d2e9c2e8689ee85cb7";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-xkbswitch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-xkbswitch-2015-05-19";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/lyokha/vim-xkbswitch";
rev = "0854ac6a810daae4a5c99bcae61613266ce75c26";
sha256 = "886a173d48340ad0ddeb3c852e4f2bdfc7b513a9d5a954115d081a3e276fa655";
};
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-stylish-haskell = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-stylish-haskell-2015-05-10";
src = fetchgit {
url = "git://github.com/nbouscal/vim-stylish-haskell";
rev = "c664376ba814de3f87cb7641f90b2c6a9dd53671";
sha256 = "12a9aad40112200060c3ee86f96589a264db287bdfeb3eb6fdf0f22a6656a5f6";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
shabadou-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "shabadou-vim-2014-07-27";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/osyo-manga/shabadou.vim";
rev = "c5af30bb0c028d53cfd89e00cab636c844034a9a";
sha256 = "392efa8a5e725219e478b571d9a30ddba88d47662467ed3123a168e8b55c4de6";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-watchdogs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-15 22:43:54 +00:00
name = "vim-watchdogs-2015-06-15";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/osyo-manga/vim-watchdogs";
2015-06-15 22:43:54 +00:00
rev = "7dd19b1344e6bb89ecd469b085ad945435905eb9";
sha256 = "8481b5e0efffec520f66920aaf3f2da843c01c70688a4c71f7b31ead8d4049d1";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-26 23:05:15 +00:00
name = "racer-2015-06-24";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/phildawes/racer";
2015-06-26 23:05:15 +00:00
rev = "8f9d14b381a1624389df78ed8d3a38bc1c85d0f4";
sha256 = "34db058ca1d5dd979db1208b5f90716145eb416c931445213a8dfac3d8b0bcdb";
};
dependencies = [];
2015-06-01 10:14:47 +00:00
buildPhase = ''
find . -type f -not -name 'racer.vim' -exec rm -rf {} \;
rm -rf editors images src
'';
};
2015-06-01 10:14:47 +00:00
neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-26 23:05:15 +00:00
name = "neocomplete-vim-2015-06-23";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/shougo/neocomplete.vim";
2015-06-26 23:05:15 +00:00
rev = "72bf34c349078ae0e4691f7e00dd2a7ab5714a69";
sha256 = "72dff487613de3e18c561b45658ec2eda66a686e1d73159c03bee1313d6d74ff";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-26 23:05:15 +00:00
name = "neosnippet-snippets-2015-06-26";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/shougo/neosnippet-snippets";
2015-06-26 23:05:15 +00:00
rev = "81c7c9840352126d1fa3748c014d00188b5a1afa";
sha256 = "977ef9fd855a03ba16c01b990bfd4121eb3a4516e7446bcb8806c41490515ec3";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-26 23:05:15 +00:00
name = "neosnippet-vim-2015-06-23";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/shougo/neosnippet.vim";
2015-06-26 23:05:15 +00:00
rev = "f1980468b0a397d36318a409d3677bc13d307392";
sha256 = "b28bf490a809e4dee474480436e0aa1c64612e4788c4f9a0afe856cf2432cfaf";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vimproc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vimproc-vim-2015-05-14";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/shougo/vimproc.vim";
rev = "c286dcbdfca9e0ee1a4cb90f09c3f03638112f5a";
sha256 = "884753f4f188cee5fb11e4dfb5aaf8b80d4809e637ab91068af1a5787acdcb19";
};
dependencies = [];
2015-06-01 10:14:47 +00:00
buildInputs = [ which ];
buildPhase = ''
sed -i 's/vimproc_mac\.so/vimproc_unix\.so/' autoload/vimproc.vim
make -f make_unix.mak
'';
};
2015-06-01 10:14:47 +00:00
vimshell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-26 23:05:15 +00:00
name = "vimshell-vim-2015-06-21";
2015-06-01 10:14:47 +00:00
src = fetchgit {
url = "git://github.com/shougo/vimshell.vim";
2015-06-26 23:05:15 +00:00
rev = "ce5ce77133dd16bd33a57b0776de0cbaead45722";
sha256 = "7c44556f28a06083ba9485af74fcc2e510e3e1830cfce6670c899329c2c85012";
2015-06-01 10:14:47 +00:00
};
dependencies = [ "vimproc-vim" ];
};
2015-06-01 10:14:47 +00:00
vim-hardtime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-hardtime-2014-10-21";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/takac/vim-hardtime";
rev = "b401c72528d1c23e4cc9bc9585fda4361d0199bf";
sha256 = "65e4bda7531076147fc46f496c8e56c740d1fcf8fe85c18cb2d2070d0c3803cd";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-quickrun-2015-05-15";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/thinca/vim-quickrun";
rev = "c7800ea3d01209da678708e4d3b5175009551807";
sha256 = "375668b6fd7cf64a26f752afcdd976f79a9dc12b045eed8afafce6486740f143";
};
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 = "b1a735928aeca7011b83133959d59b9c95ab8535fd00ce9968fae4c3b1381931";
};
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";
sha256 = "1ebf98b170642d342207eb8c16551f9969f884b3be975b8755f1018947053ba8";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-26 23:05:15 +00:00
name = "youcompleteme-2015-06-23";
2015-06-01 10:14:47 +00:00
src = fetchgit {
url = "git://github.com/valloric/youcompleteme";
2015-06-26 23:05:15 +00:00
rev = "66dcc9581c7d237f4d839389bee055df6788fbc9";
sha256 = "91971f0640d462622a31ea64c5c41df7649a6c6e6e4d93220554a7d910a11fdf";
};
dependencies = [];
2015-06-01 10:14:47 +00:00
buildInputs = [
python cmake
(if stdenv.isDarwin then llvmPackages.clang else llvmPackages.clang-unwrapped)
llvmPackages.llvm
2015-06-01 10:14:47 +00:00
];
configurePhase = ":";
buildPhase = ''
patchShebangs .
target=$out/${rtpPath}/youcompleteme
mkdir -p $target
cp -a ./ $target
mkdir $target/build
cd $target/build
cmake -G "Unix Makefiles" . $target/third_party/ycmd/cpp -DPYTHON_LIBRARIES:PATH=${python}/lib/libpython2.7.so -DPYTHON_INCLUDE_DIR:PATH=${python}/include/python2.7 -DUSE_CLANG_COMPLETER=ON -DUSE_SYSTEM_LIBCLANG=ON
make ycm_support_libs -j''${NIX_BUILD_CORES} -l''${NIX_BUILD_CORES}}
${bash}/bin/bash $target/install.sh --clang-completer --system-libclang
${vimHelpTags}
vimHelpTags $target
'';
2015-06-01 10:14:47 +00:00
# TODO: implement proper install phase rather than keeping everything in store
# TODO: support llvm based C completion, See README of git repository
installPhase = ":";
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.linux;
};
};
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";
sha256 = "e3dd18f9fd36543e0c87257b7eaa999a82d75cbfa6dce4dfea403fa751c8620f";
};
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";
sha256 = "ca0982873ed81e7f6545a6623b735104c574fe580d5f21b0aa3dc1557edac240";
};
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";
sha256 = "f7b5764357370f03546556bd45558837f3790b0e86afadb63cd04d714a668a29";
};
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";
sha256 = "094ccc132dc3991a30feb31bbdd777755294957e843517491345a4999e86cb5f";
};
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";
sha256 = "b84501b0fc5cd51bbb58f12f4c2b3a7c97b03fe2a76446b56a2c111bd4f7335f";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-26 23:05:15 +00:00
name = "vim-wakatime-2015-06-23";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/wakatime/vim-wakatime";
2015-06-26 23:05:15 +00:00
rev = "2ee2b4ea56ae1b56ce77a1b9e5d2c51fc6768842";
sha256 = "440b6027921fce801255eedd29d24b43975038e78dfe465a381ae76e443480c2";
};
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
name = "command-t-2015-04-29";
src = fetchgit {
2015-06-01 10:14:47 +00:00
url = "git://github.com/wincent/command-t";
rev = "f7344ebbe95c532b2ad01f19877d6d611db0193b";
sha256 = "21d7ee2bbff3f79ec3c81bcf683acac6528ea89faef8b7dd075cc83662930a50";
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
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
2015-03-26 18:16:21 +00:00
name = "pathogen-2014-11-06";
src = fetchgit {
url = "git://github.com/tpope/vim-pathogen";
rev = "b9fb0dfd811004010f5f6903edef42d6004ebea2";
sha256 = "62ec7e9721651aa86aa716d47c2057771f7d093f414c3b98f50a759d210db4c7";
};
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";
sha256 = "7b6831d5da1c23d95f3158c67e4376d32c2f62ab2e30d02d3f3e14dcfd867d9b";
};
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";
sha256 = "47975a426d06f41811882691d8a51f32bc72f590477ed52b298660486b2488e3";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
2015-07-09 01:58:57 +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";
sha256 = "571f4ed0a2d8c66d1c15029fb812a84b55228d07cd2e4bbbc73a33493013fed3";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
rust = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "rust-2015-01-29";
src = fetchgit {
url = "git://github.com/wting/rust.vim";
2015-02-05 23:54:54 +00:00
rev = "2450ecf3091cc7c2711ca9f00eae8e3bedd04376";
sha256 = "9d2e8b2c06d6100f9a1e76644313d457a2ff955241d8f712de6fddd0b7f5c4ee";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
sensible = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-05-11 19:46:41 +00:00
name = "sensible-2015-04-04";
2015-02-08 15:12:59 +00:00
src = fetchgit {
url = "git://github.com/tpope/vim-sensible";
2015-05-11 19:46:41 +00:00
rev = "d0beb8ab42627bea2c747564ca46ec663e3ba0ba";
sha256 = "c1893990e7b0b3f409b2ec4f4e1fb7f00f61a5146b94314ad28d86231d3ab6f7";
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 = "72f4b7c5e60c942592e624806960736e71b9f109fbbfa3a5a2a37970b90f6025";
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
snipmate = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-05-11 19:46:41 +00:00
name = "snipmate-2015-04-04";
src = fetchgit {
url = "git://github.com/garbas/vim-snipmate";
2015-05-11 19:46:41 +00:00
rev = "2d3e8ddc4424088d8e19c33764fff077f3116f55";
sha256 = "fe23f38cf074b12082879256a5c4c16e6f55233e0af0735867b4d5c21b72ff09";
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";
sha256 = "a08c77aea39be4a0a980d62673d1d17fecc518a8aeb9101210e453aaacb78fbd";
};
dependencies = [];
2014-08-13 17:58:25 +00:00
};
2015-06-01 10:14:47 +00:00
surround = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "surround-2015-03-15";
2014-08-13 17:58:25 +00:00
src = fetchgit {
url = "git://github.com/tpope/vim-surround";
2015-03-26 18:16:21 +00:00
rev = "772ab9587b7d1e2c3bae75395c9123803059ba8a";
sha256 = "5f4c5afecaa99dc67875a2356b46cb6e8daeffca4a00a451965ca022de26cbef";
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
2015-06-15 22:43:54 +00:00
name = "table-mode-2015-06-05";
src = fetchgit {
url = "git://github.com/dhruvasagar/vim-table-mode";
2015-06-15 22:43:54 +00:00
rev = "5395c9f52b91ae6083fd7b26577b8f926da6871e";
sha256 = "784e51f7144790fcfad83c2dc5c7f250608826ce48706b80c41f88fa04914ae2";
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-2015-05-20";
2015-02-05 23:54:54 +00:00
src = fetchgit {
url = "git://github.com/tomtom/tlib_vim";
2015-06-01 10:14:47 +00:00
rev = "c9ffbef0718a35bd30eb711456e2100e4adf79f7";
sha256 = "b0752538ee629c6f2c52d3b2b2fb61247bcd186ef9610ad8ae5c7d24ea41d971";
};
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
undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "undotree-2015-03-01";
2014-11-20 20:49:17 +00:00
src = fetchgit {
url = "git://github.com/mbbill/undotree";
2015-03-26 18:16:21 +00:00
rev = "fa018f38252f58073f2987f8bf0d2d4a61e07277";
sha256 = "c52874b0b85d0a44a1f2f055a74985886af97615bac032259fc21d6ea40d6ca7";
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
2015-03-26 18:16:21 +00:00
name = "vim-addon-actions-2014-09-22";
2015-02-05 23:54:54 +00:00
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-actions";
rev = "a5d20500fb8812958540cf17862bd73e7af64936";
sha256 = "d2c3eb7a1f29e7233c6fcf3b02d07efebe8252d404ee593419ad399a5fdf6383";
2015-02-05 23:54:54 +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-async = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "vim-addon-async-2013-10-18";
2014-11-20 20:49:17 +00:00
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-async";
rev = "dadc96e188f1cdacbac62129eb29a1eacfed792c";
sha256 = "27f941e21a8ca5940bd20914e2a9e3809e554f3ef2c27b3bafb9a153107a5d07";
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
vim-addon-background-cmd = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "vim-addon-background-cmd-2015-01-05";
2015-02-05 23:54:54 +00:00
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-background-cmd";
rev = "e99076519139b959edce0581b0f31207a5ec7c64";
sha256 = "524795221ae727635fe52ead47dff452d2dd48900917da609426ea399a2eceeb";
2015-02-05 23:54:54 +00:00
};
dependencies = ["vim-addon-mw-utils"];
2014-11-20 20:49:17 +00:00
};
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 = "4ad7d5f6669f0a1b4a24c9ce3649c030d7d3fc8588de4d4d6c3269140fbe9b3e";
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 = "969a474749edf7e4443d2540eaf12e891cc0a3f5533e62e081d32408f403a0ea";
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
2015-03-26 18:16:21 +00:00
name = "vim-addon-errorformats-2014-11-05";
2015-02-05 23:54:54 +00:00
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-errorformats";
rev = "dcbb203ad5f56e47e75fdee35bc92e2ba69e1d28";
sha256 = "a1260206545d5ae17f2e6b3319f5cf1808b74e792979b1c6667d75974cc53f95";
2015-02-05 23:54:54 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-addon-goto-thing-at-cursor = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "vim-addon-goto-thing-at-cursor-2012-01-11";
2015-02-05 23:54:54 +00:00
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-goto-thing-at-cursor";
rev = "f052e094bdb351829bf72ae3435af9042e09a6e4";
sha256 = "34658ac99d9a630db9c544b3dfcd2c3df69afa5209e27558cc022b7afc2078ea";
2015-02-05 23:54:54 +00:00
};
dependencies = ["tlib"];
2014-08-13 17:58:25 +00:00
};
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";
sha256 = "f0687e08f380ff085b6fa3e708d1631049571706f55d796e22612aff02e51459";
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
2015-03-26 18:16:21 +00:00
name = "vim-addon-manager-2014-12-03";
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";
2015-02-05 23:54:54 +00:00
rev = "fda9d2f4522024aa8bd8b8305e6a71c4a4a28c07";
2015-03-26 18:16:21 +00:00
sha256 = "a3b5da9bcc01c6f0fb0a5e13a6f9efb58471339ed32c480fde96856bb9e1e7be";
2014-11-20 20:49:17 +00:00
};
dependencies = [];
2014-10-21 12:24:30 +00:00
};
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";
sha256 = "15b70f796f28cbd999060fea7f47408fa8a6cb176cd4915b9cc3dc6c53eed960";
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 = "4e1b6d1b59050f1063e58ef4bee9e9603616ad184cd9ef7466d0ec3d8e22b91c";
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 = "0e326e2c6cb6597ca533a64a845ef9dd946cd249250375ef9775d974ecef37e2";
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 = "43f027e4b7576031072515c23c2b09f7f2c8bba7ee43a1e2041a4371bd954d1b";
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";
sha256 = "3942eb6a7191c308beab240e91c99ee4e2c52e2d672503d46f98312e823b86cd";
2015-02-05 23:54:54 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-addon-signs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "vim-addon-signs-2013-04-19";
2015-02-05 23:54:54 +00:00
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-signs";
rev = "17a49f293d18174ff09d1bfff5ba86e8eee8e8ae";
sha256 = "a9c03a32e758d51106741605188cb7f00db314c73a26cae75c0c9843509a8fb8";
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
};
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 = "a1334ae694e0a03229bacc8ba7e08e7223df240244c7378e3f1bd91d74e957c2";
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";
sha256 = "aef048e664653b5007df71ac24ed34ec55d8938c763d3f80885a122e445a9b3d";
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 = "672166ecfe0599177afb56b444366f587f77e9659c256ac4e41ee45cb2df6055";
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 = "0a7bf2caf36772c94bd25bfbf46bf628623809c9cfab447ff788eb74149464ef";
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
2015-06-26 23:05:15 +00:00
name = "vim-airline-2015-06-26";
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/bling/vim-airline";
2015-06-26 23:05:15 +00:00
rev = "9afda181dddd0a0ae34aa10e7faad4a66e94676b";
sha256 = "1e3b540353b4e047de7c26d8e02de5e68c02a5a1fccc946faa494bcad44bc6b1";
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
2015-05-11 19:46:41 +00:00
name = "vim-coffee-script-2015-04-20";
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";
2015-05-11 19:46:41 +00:00
rev = "32fe889b8cafd3a4921ef8e6485156453ff58c42";
sha256 = "d7162b2546c9949c96811d7a72c17ae2db9871697ee65ed0b1a8f0287d278690";
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
2015-03-26 18:16:21 +00:00
name = "vim-easy-align-2014-12-14";
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";
2015-02-05 23:54:54 +00:00
rev = "c62d124be614de65922b15d468c4049d1eee9353";
sha256 = "868bd5a0405a7611e020fe7692a078ca72562674b6d9a404d2d83f665af96aee";
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
2015-06-15 22:43:54 +00:00
name = "vim-gista-2015-06-04";
2015-05-11 19:46:41 +00:00
src = fetchgit {
url = "git://github.com/lambdalisue/vim-gista";
2015-06-15 22:43:54 +00:00
rev = "ffe85c0438cf5ad76b07ddb6524de3803c2bfdba";
sha256 = "9f44d07a4f36fb4559c99a655501b3752e180458de9d76d1cb293abd0f990fb4";
2015-05-11 19:46:41 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-05-11 19:46:41 +00:00
name = "vim-gitgutter-2015-05-08";
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";
2015-05-11 19:46:41 +00:00
rev = "339f8ba079ed7d465ca442c9032b36bc56c21f61";
sha256 = "f306cc7bac8560fe2864161be675545c1023486b950900da8d8c74f98d568e15";
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";
sha256 = "c7859591975a51a1736f99a433d7ca3e7638b417340a0472a63995e16d8ece93";
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
name = "vim-latex-live-preview-2015-05-11";
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";
2015-06-01 10:14:47 +00:00
rev = "7695dd4ebddb735bec632d468e2202d070029cb8";
sha256 = "3551e2a84a98b07f5edce6e35bad5cd2a78da1ef60dd94202c623e238b05bfc8";
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-signature = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-signature-2015-05-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/kshenoy/vim-signature";
2015-06-01 10:14:47 +00:00
rev = "7ab61e2a5101ec139a54735b432a6e95a22770d8";
sha256 = "041b906cd27bcb922732e324b671adbf6ea0106105230ea43111ca9f844b64c3";
2015-03-28 17:44:35 +00:00
};
dependencies = [];
};
2015-06-01 10:14:47 +00:00
vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-06-15 22:43:54 +00:00
name = "vim-snippets-2015-06-08";
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";
2015-06-15 22:43:54 +00:00
rev = "69c918175c77c0a0516c3ab587509a3eca38b3ae";
sha256 = "1fe9c6d5f80513bc35c309723b57d73d42296fbe73d44c0df1de4244b2596bf0";
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
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 = "485fc58595bb4e50f2239bec5a4cbb0d8f5662aa3f744e42c110cd1d66b7e5b0";
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
vundle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2015-03-26 18:16:21 +00:00
name = "vundle-2015-03-21";
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";
2015-03-26 18:16:21 +00:00
rev = "cfd3b2d388a8c2e9903d7a9d80a65539aabfe933";
sha256 = "7ce9bb0a59c8f86cedd9b3867b834bcd160f2224c187189997ef76c2bfd99d50";
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
};
2015-06-01 10:14:47 +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";
sha256 = "2feb7d57ab0a9f2ea44ccd606e540db64ab3285956398a50ecc562d7b8dbcd05";
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 = [];
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-15 22:43:54 +00:00
}