nixpkgs/pkgs/misc/vim-plugins/default.nix
2016-02-08 19:17:50 +03:00

1612 lines
53 KiB
Nix

# TODO check that no license information gets lost
{ fetchurl, bash, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip
, which, fetchgit, fetchFromGitHub, fetchhg, fetchzip, llvmPackages, zip
, vim_configurable, vimPlugins, xkb_switch, git
, Cocoa
}:
let
inherit (vimUtils.override {inherit vim;}) rtpPath addRtp buildVimPlugin
buildVimPluginFrom2Nix vimHelpTags;
in
# TL;DR
# Add your plugin to ./vim-plugin-names
# Generate via `vim-plugin-names-to-nix`
# If plugin is complicated then make changes to ./vim2nix/additional-nix-code
# This attrs contains two sections:
# The first contains plugins added manually, the second contains plugins
# generated by call nix#ExportPluginsForNix.
# Documentation & usage see vim-utils.nix.
# attribute names should be the same as used by vim-pi to make dependency
# resolution work
rec {
# This is not a plugin, it provides bin/vim-open-buffer-with-plugins-derivations
# which recreates this the following derivations based on ./vim-plugin-names
pluginnames2nix = vimUtils.pluginnames2Nix {
name = "vim-plugin-names-to-nix";
namefiles = [./vim-plugin-names];
};
# Section I
vim-addon-vim2nix = vim2nix;
vim2nix = buildVimPluginFrom2Nix { # use it to update plugins
name = "vim2nix";
src = ./vim2nix;
dependencies = ["vim-addon-manager"];
};
# Section II
# Update with vimUtils.vimPlugins.pluginnames2Nix command
# aliasess
"sourcemap.vim" = sourcemap;
Colour_Sampler_Pack = Colour-Sampler-Pack;
YouCompleteMe = youcompleteme;
airline = vim-airline;
alternative = a-vim; # backwards compat, added 2014-10-21
calendar = calendar-vim;
coffee-script = vim-coffee-script;
coffeeScript = coffee-script; # backwards compat, added 2014-10-18
colors-solarized = Solarized;
colorsamplerpack = Colour_Sampler_Pack;
command_T = command-t; # backwards compat, added 2014-10-18
css_color_5056 = vim-css-color;
ctrlp = ctrlp-vim;
easy-align = vim-easy-align;
easymotion = vim-easymotion;
eighties = vim-eighties;
ghc-mod-vim = ghcmod;
gist-vim = Gist;
gitgutter = vim-gitgutter;
gundo = gundo-vim;
Gundo = gundo-vim; # backwards compat, added 2015-10-03
haskellConceal = haskellconceal; # backwards compat, added 2014-10-18
haskellconceal = vim-haskellconceal;
hier = vim-hier;
hoogle = Hoogle;
ipython = vim-ipython;
latex-live-preview = vim-latex-live-preview;
multiple-cursors = vim-multiple-cursors;
necoGhc = neco-ghc; # backwards compat, added 2014-10-18
neocomplete = neocomplete-vim;
neosnippet = neosnippet-vim;
nerdcommenter = The_NERD_Commenter;
nerdtree = The_NERD_tree;
quickrun = vim-quickrun;
signature = vim-signature;
stylish-haskell = vim-stylish-haskell;
stylishHaskell = stylish-haskell; # backwards compat, added 2014-10-18
supertab = Supertab;
syntastic = Syntastic;
tabular = Tabular;
tagbar = Tagbar;
thumbnail = thumbnail-vim;
tmux-navigator = vim-tmux-navigator;
tmuxNavigator = tmux-navigator; # backwards compat, added 2014-10-18
tslime = tslime-vim;
vimproc = vimproc-vim;
vimshell = vimshell-vim;
watchdogs = vim-watchdogs;
webapi-vim = WebAPI;
wombat256 = wombat256-vim; # backwards compat, added 2015-7-8
yankring = YankRing;
CSApprox = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "CSApprox-2013-07-26";
src = fetchgit {
url = "git://github.com/godlygeek/csapprox";
rev = "7981dac51d8b6776985aa08cb7b5ee98ea7f2ddd";
sha256 = "8ccb47eb79c7ab63109d32158388812bdca340985527af4f2a5489ff8683389f";
};
dependencies = [];
};
CheckAttach = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "CheckAttach-2015-06-22";
src = fetchgit {
url = "git://github.com/chrisbra/CheckAttach";
rev = "a1d86be7e69b25b41ce1a7fe2d2844330f783b68";
sha256 = "b8921c826f5a122e9b128301c620b8b3d3fd88a15a2b0634fdea01062fba2c1f";
};
dependencies = [];
};
Gist = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Gist-2015-10-25";
src = fetchgit {
url = "git://github.com/mattn/gist-vim";
rev = "88c331e2e07765090112a396e5e119b39b5aa754";
sha256 = "0da7e356b4a50921c1a67edcf066785ed637750094f42ac1bc61ae82a2f7f9c5";
};
dependencies = [];
};
Hoogle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Hoogle-2015-12-24";
src = fetchgit {
url = "git://github.com/Twinside/vim-hoogle";
rev = "a5db36f048ac16ab9774fc86f36cd4ae9a444932";
sha256 = "31cb37f9fa38e15a52bc35c050e173afc2af5fe8b3d6e5f2026cd5a89bb1a5a0";
};
dependencies = [];
};
Solarized = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Solarized-2011-05-09";
src = fetchgit {
url = "git://github.com/altercation/vim-colors-solarized";
rev = "528a59f26d12278698bb946f8fb82a63711eec21";
sha256 = "a1b2ef696eee94dafa76431c31ee260acdd13a7cf87939f27eca431d5aa5a315";
};
dependencies = [];
};
Supertab = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Supertab-2016-01-03";
src = fetchgit {
url = "git://github.com/ervandew/supertab";
rev = "66511772a430a5eaad7f7d03dbb02e8f33c4a641";
sha256 = "fd49314e9f3ca3262e40b67f05311de94f50d03c946fc53e25b3bd61e33eb418";
};
dependencies = [];
};
Syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Syntastic-2016-01-18";
src = fetchgit {
url = "git://github.com/scrooloose/syntastic";
rev = "d1a179d750bd1d136d7f38e69f2c5b8439886de7";
sha256 = "e2cfa0fa27b0249b1e5d783883f4c72a13a167a869218d73ae1b2cad631c3a28";
};
dependencies = [];
};
Tabular = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Tabular-2013-05-16";
src = fetchgit {
url = "git://github.com/godlygeek/tabular";
rev = "60f25648814f0695eeb6c1040d97adca93c4e0bb";
sha256 = "28c860ad621587f2c3213fae47d1a3997746527c17d51e9ab94c209eb7bfeb0f";
};
dependencies = [];
};
Tagbar = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Tagbar-2015-06-19";
src = fetchgit {
url = "git://github.com/majutsushi/tagbar";
rev = "7b36c46d17d57db34fdb0adac9ba6382d0bb5e66";
sha256 = "346773e772772d1c68318effd8e6c8c8b36f61cfd9c72a85c0bfcec9843f13c7";
};
dependencies = [];
};
The_NERD_Commenter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "The_NERD_Commenter-2015-10-29";
src = fetchgit {
url = "git://github.com/scrooloose/nerdcommenter";
rev = "1f4bfd59920c101a30a74a07b824608a6e65f3fe";
sha256 = "4ef10aafc54bcb3e119cac7f4b0065d8dc09d43d92dc069a499e96e935afb83d";
};
dependencies = [];
};
The_NERD_tree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "The_NERD_tree-2015-12-02";
src = fetchgit {
url = "git://github.com/scrooloose/nerdtree";
rev = "4ebbb533c3faf2c480211db2b547972bb3b60f2b";
sha256 = "f730aa7347d6e710451514137985265338f8f60c4ab7f98e2a0eed65071e08ed";
};
dependencies = [];
};
UltiSnips = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "UltiSnips-2016-01-20";
src = fetchgit {
url = "git://github.com/SirVer/ultisnips";
rev = "3f2c591c3b547e7d7b80d15897ac7a9e3bf85ec8";
sha256 = "6644e8603202adc1ade58a972164e5e6470248ca1d2c40cd949b8f35e67b8019";
};
dependencies = [];
};
VimOutliner = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "VimOutliner-2015-10-01";
src = fetchgit {
url = "git://github.com/vimoutliner/vimoutliner";
rev = "cb41cfd6d636e1243e7e9c46b35fc5cb50588069";
sha256 = "6faf7e34f4793b2445dd9c3facbf19cd6c1c9ab39b83dfb3d89626314ef1850f";
};
dependencies = [];
};
WebAPI = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "WebAPI-2015-10-05";
src = fetchgit {
url = "git://github.com/mattn/webapi-vim";
rev = "dfc60635e610f9200646a84d11887af9e3d50b10";
sha256 = "7bc85fe344854e02377f4ac931a015ef1ffd6de14f1d0d8fca04785beabe584b";
};
dependencies = [];
};
YankRing = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "YankRing";
src = fetchurl {
url = "http://www.vim.org/scripts/download_script.php?src_id=23487";
name = "yankring_190.zip";
sha256 = "0nnxpsfjp2p9jvs3y5ynnd5s56snz9927zdp9bgmay2jgxfmp0si";
};
buildInputs = [ unzip ];
dependencies = [];
meta = {
url = "http://www.vim.org/scripts/script.php?script_id=1234";
};
};
commentary = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "commentary-2015-09-12";
src = fetchgit {
url = "git://github.com/tpope/vim-commentary";
rev = "e0f4850d78137a35b9461c530078bd77f39e4dce";
sha256 = "64896579a5c682e7da2cce7292cba16c4186a42ff68d0e92143fa7345d28cf0d";
};
dependencies = [];
};
ctrlp-py-matcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "ctrlp-py-matcher-2016-01-13";
src = fetchgit {
url = "git://github.com/FelikZ/ctrlp-py-matcher";
rev = "8a803267a741cff3d6147650745f83c8f2125578";
sha256 = "27fc887bdad36bd33a0e8645465e287c20158533408b241f46141528313baa34";
};
dependencies = [];
};
ctrlp-z = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "ctrlp-z-2015-10-17";
src = fetchgit {
url = "git://github.com/amiorin/ctrlp-z";
rev = "d1a69ec623ce24b9a30fc8fe3cd468c322b03026";
sha256 = "d40ba49edba53805779706633ec3ee0056dd88835cc6b2e88fbe628a5e90da9a";
};
dependencies = [];
};
extradite = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "extradite-2015-09-22";
src = fetchgit {
url = "git://github.com/int3/vim-extradite";
rev = "52326f6d333cdbb9e9c6d6772af87f4f39c00526";
sha256 = "91f744ee73faad92adb67a698b58a14cfa0fbb65f6d483a96a1c5b139ee1cdf1";
};
dependencies = [];
};
fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "fugitive-2016-01-08";
src = fetchgit {
url = "git://github.com/tpope/vim-fugitive";
rev = "fd36aa9c61e06d71befdbe8931f97137c489b065";
sha256 = "ef87be5ad469368f11185db32a8acc14ac08f1b151d0c58492042b0a9314c87e";
};
dependencies = [];
};
ghcmod = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "ghcmod-2016-01-20";
src = fetchgit {
url = "git://github.com/eagletmt/ghcmod-vim";
rev = "a7c76b979918889fa6de02a3f712925931f62cb8";
sha256 = "2ad76948c97e9141eca81423a8d27d092e0f5c62818c66f08679d9cae70268f6";
};
dependencies = [];
};
vim-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-nix-2015-12-10";
src = fetchgit {
url = "git://github.com/LnL7/vim-nix";
rev = "f0b7bd4bce5ed0f12fb4d26115c84fb3edcd1e12";
sha256 = "52dbdd4d5bc12988eb62d9022109dbd8b1c5716c27753ce187db6c2fb6737664";
};
dependencies = [];
};
vim-css-color = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-css-color-2015-10-03";
src = fetchgit {
url = "git://github.com/ap/vim-css-color";
rev = "7ad79c7b77bd83296d7a10e596860d9269070207";
sha256 = "bd6ad1ddad9d520c018083bab8eb53575f99572f3e079abad452db0bf8871708";
};
dependencies = [];
};
neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neomake-2016-01-21";
src = fetchgit {
url = "git://github.com/benekastah/neomake";
rev = "e0fa23401c1231bd942779c79c5c71d08f28e440";
sha256 = "0d0536188127538cacedda77a81e0749d6207fa882ca1f34f36852d009aa73f9";
};
dependencies = [];
};
vim-hdevtools = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-hdevtools-2012-12-29";
src = fetchgit {
url = "git://github.com/bitc/vim-hdevtools";
rev = "474947c52ff9c93dd36f3c49de90bd9a78f0baa1";
sha256 = "bf5f096b665c51ce611c6c1bfddc3267c4b2f94af84b04482b07272a6a5a92f3";
};
dependencies = [];
};
vim-tmux-navigator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-tmux-navigator-2015-12-05";
src = fetchgit {
url = "git://github.com/christoomey/vim-tmux-navigator";
rev = "1298b71c420f1d0abceba3f35cc710131f84d73b";
sha256 = "bde962fe1441cd6f030d9704e6e71117fb43d827b8952d3e1d44009c297b4eb5";
};
dependencies = [];
};
ctrlp-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "ctrlp-vim-2016-01-18";
src = fetchgit {
url = "git://github.com/ctrlpvim/ctrlp.vim";
rev = "7f74368d85bb521951dd58123349ce66b947d058";
sha256 = "fecd1137845ccfe72a1d2e3e1660f8e2264dc46cc34dfa9f1037f14f84115f33";
};
dependencies = [];
};
vim-jade = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-jade-2016-01-21";
src = fetchgit {
url = "git://github.com/digitaltoad/vim-jade";
rev = "319cba1ee5313e8b50fd912d10dfe40a171f0312";
sha256 = "280ef32d862793b42685aba4802f919928b52b93328d0cef35584a83baf884d0";
};
dependencies = [];
};
neco-ghc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neco-ghc-2016-01-20";
src = fetchgit {
url = "git://github.com/eagletmt/neco-ghc";
rev = "26515b4219c04448d37d6cb4a3c54f2d3080b056";
sha256 = "265ee24be8f9bf6d067213a751fd54ddcb53570831e7520af41c3eb7f5184fcd";
};
dependencies = [];
};
YUNOcommit-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "YUNOcommit-vim-2014-11-26";
src = fetchgit {
url = "git://github.com/esneider/YUNOcommit.vim";
rev = "981082055a73ef076d7e27477874d2303153a448";
sha256 = "4bfd80720c353884e5c373b5457397a63e5e2e4ab4a97d6ce86c1740ac3b4c56";
};
dependencies = [];
};
vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-go-2016-01-22";
src = fetchgit {
url = "git://github.com/fatih/vim-go";
rev = "1beac4aadccb921b3cb264a8e254b75c8a326c21";
sha256 = "02e92ab38a667c0355a4e5c48e1fc53a7ad416208e9151ff4a9cbd7d477c0fc6";
};
dependencies = [];
};
vim-colorschemes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-colorschemes-2015-07-25";
src = fetchgit {
url = "git://github.com/flazz/vim-colorschemes";
rev = "28a989b28457e38df620e4c7ab23e224aff70efe";
sha256 = "5308c874a34dc03256ece2e54ab7b92c8384ebb4137436582fd4aa6c38ad36e5";
};
dependencies = [];
};
idris-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "idris-vim-2016-01-14";
src = fetchgit {
url = "git://github.com/idris-hackers/idris-vim";
rev = "09772ea37a83f8633890fc5cd9221bcf6e22c157";
sha256 = "28eab2793950781a416e76657dfdcb58601c31ffafb336e3beb9790eef6a268d";
};
dependencies = [];
};
calendar-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "calendar-vim-2016-01-19";
src = fetchgit {
url = "git://github.com/itchyny/calendar.vim";
rev = "2a6c13ee8056fe5b82ce6529f426ed63096dc6bc";
sha256 = "8228b6e97c42254eb8e8e35e391f24a7fc2f55753af913fe1605b9ade0ff9d98";
};
dependencies = [];
};
thumbnail-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "thumbnail-vim-2016-01-14";
src = fetchgit {
url = "git://github.com/itchyny/thumbnail.vim";
rev = "cf4463dc31722ab116bc61779c515a4b7a1e9af1";
sha256 = "7037916b16f72ea2aaff666e4fa3e1f9546995c0d6fb4634d2dbfac5b184bb26";
};
dependencies = [];
};
vim-ipython = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-ipython-2015-06-23";
src = fetchgit {
url = "git://github.com/ivanov/vim-ipython";
rev = "42499f094b805b90b683afa5009cee99abd0bb75";
sha256 = "7f59c3edde4c2b8555d703c96e855ca36665aacdca5a30d1e9e21c31bc252f2d";
};
dependencies = [];
};
vim-hier = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-hier-2011-08-27";
src = fetchgit {
url = "git://github.com/jceb/vim-hier";
rev = "0b8c365263551a67404ebd7e528c55e17c1d3de7";
sha256 = "f62836545abfe379f9c5410da28409947407cd282ef784b2db89aed0756a1785";
};
dependencies = [];
buildInputs = [ vim ];
};
vim-buffergator = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-buffergator-2016-01-21";
src = fetchgit {
url = "git://github.com/jeetsukumaran/vim-buffergator";
rev = "9a6a946a41bcf492dfe8da5eee4cc2ee3d55c77f";
sha256 = "6df3d1bffb42f7a96b3136ed80534380ba9e2f508b14dbd665260ffe240ccfee";
};
dependencies = [];
};
tslime-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "tslime-vim-2015-08-14";
src = fetchgit {
url = "git://github.com/jgdavey/tslime.vim";
rev = "4a8091956e331d7b1d4187a2883b720dfec7e9dd";
sha256 = "e63113f80c056484c462f6d1eb4634cbe4c6c29170f76f4c992adc17b3539a25";
};
dependencies = [];
};
vim-nerdtree-tabs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-nerdtree-tabs-2014-09-25";
src = fetchgit {
url = "git://github.com/jistr/vim-nerdtree-tabs";
rev = "0decec122e9bb3e9328b01fa20a9650e79cc6ca7";
sha256 = "ac4bfc3ae18e8a62ef8e20d0dd0a0f7c172d0ebd5fed58c533ccccec3ae7bdc2";
};
dependencies = [];
};
vim-colorstepper = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-colorstepper-2015-08-04";
src = fetchgit {
url = "git://github.com/jonbri/vim-colorstepper";
rev = "5783c2567a193e7604780353d6f8ce445b2ab191";
sha256 = "a9ab0c724a827eba9c74d93dda118863656d27df7d5d26b971e0ac71c87f7e59";
};
dependencies = [];
};
vim-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-xdebug-2012-08-15";
src = fetchgit {
url = "git://github.com/joonty/vim-xdebug";
rev = "a4980fa65f7f159780593ee37c178281691ba2c4";
sha256 = "1ccb0e63eaf68548feb1c37b09c07c84b6bea9b350c4257549f091aa414601e2";
};
dependencies = [];
postInstall = false;
};
limelight-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "limelight-vim-2015-08-19";
src = fetchgit {
url = "git://github.com/junegunn/limelight.vim";
rev = "153e3f7b78484eb4f5d69833ebf628f44b94996d";
sha256 = "85a5188dfd51a170b88e1df5ad4f5ae1cfb2e5c54dfbb734d7f4d85cf28eb5fd";
};
dependencies = [];
};
vim-peekaboo = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-peekaboo-2015-07-16";
src = fetchgit {
url = "git://github.com/junegunn/vim-peekaboo";
rev = "b14a7496897bb0a520bed4f519ca79a683bafeec";
sha256 = "926f42ee4271395ad8a3526e7b0f1077482cec2f557595d3365ac86eb88ae8c3";
};
dependencies = [];
};
vim-eighties = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-eighties-2015-11-02";
src = fetchgit {
url = "git://github.com/justincampbell/vim-eighties";
rev = "62a9719df45fddd0456bf47420fc4768f9c8f5a5";
sha256 = "b3386d1c40650e5c0ebda2105d1404cfb2aab74153e13bace4a73bc667d91e81";
};
dependencies = [];
};
latex-box = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "latex-box-2015-06-01";
src = fetchgit {
url = "git://github.com/latex-box-team/latex-box";
rev = "3c2901e12cb78bfb2be58ba4c62a488612550fe1";
sha256 = "8af2c45209c39438da8481183a1f14885891db73454bb4b16d24799453184e81";
};
dependencies = [];
};
vim-jinja = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-jinja-2014-06-11";
src = fetchgit {
url = "git://github.com/lepture/vim-jinja";
rev = "4412484b410b15caecd71f2e52758b2a90ea124d";
sha256 = "650c7f23688e8982f30be3f7d45b73d9c1d283f10a6829e518e2583b4a52befc";
};
dependencies = [];
};
vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vimtex-2016-01-15";
src = fetchgit {
url = "git://github.com/lervag/vimtex";
rev = "1aedd5a7464c93af5af86fec2f4cfce97d5f2947";
sha256 = "5fcc46c0dcfd41e15dfdbc66417834e1b933cfb7ae3de9e16cfd3975bc196ba1";
};
dependencies = [];
};
vim-easymotion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-easymotion-2016-01-22";
src = fetchgit {
url = "git://github.com/lokaltog/vim-easymotion";
rev = "799491e007515890aff363b6eac5dbc9c5aa7f80";
sha256 = "037ee34adc0811571c536cdd37fcfa2d483dd76276380c8858dfe134893bf5e7";
};
dependencies = [];
};
vim-xkbswitch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-xkbswitch-2016-01-12";
src = fetchgit {
url = "git://github.com/lyokha/vim-xkbswitch";
rev = "46858cbe11a8d1a2abc94de8c817465d0020d6f6";
sha256 = "36f89ca04c4fa15f4b792620660fefc48f31233351dcc0387d2c4ee0f3c50bbf";
};
dependencies = [];
patchPhase = ''
substituteInPlace plugin/xkbswitch.vim \
--replace /usr/local/lib/libxkbswitch.so ${xkb_switch}/lib/libxkbswitch.so
'';
buildInputs = [ xkb_switch ];
};
vim-startify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-startify-2016-01-12";
src = fetchgit {
url = "git://github.com/mhinz/vim-startify";
rev = "8545f6f553640dc0318582c9749c893f2be3345e";
sha256 = "cf98c35c106998d7432df572501f7e3d9e452e8104eec3726e9fa6c94c592029";
};
dependencies = [];
};
lushtags = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "lushtags-2015-06-06";
src = fetchgit {
url = "git://github.com/mkasa/lushtags";
rev = "3d7229b07b47ab2fc188d7db63b33dfcd63a1802";
sha256 = "f5b6eb7b53a5202d0e55c57d6f4fd7b274dfb4224d8d94c91b708096b4fc07b9";
};
dependencies = [];
};
vim-stylish-haskell = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-stylish-haskell-2015-05-10";
src = fetchgit {
url = "git://github.com/nbouscal/vim-stylish-haskell";
rev = "c664376ba814de3f87cb7641f90b2c6a9dd53671";
sha256 = "12a9aad40112200060c3ee86f96589a264db287bdfeb3eb6fdf0f22a6656a5f6";
};
dependencies = [];
};
shabadou-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "shabadou-vim-2014-07-27";
src = fetchgit {
url = "git://github.com/osyo-manga/shabadou.vim";
rev = "c5af30bb0c028d53cfd89e00cab636c844034a9a";
sha256 = "392efa8a5e725219e478b571d9a30ddba88d47662467ed3123a168e8b55c4de6";
};
dependencies = [];
};
vim-watchdogs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-watchdogs-2016-01-13";
src = fetchgit {
url = "git://github.com/osyo-manga/vim-watchdogs";
rev = "ebcf3df39007aa5d65910f44eb20c9caea9007df";
sha256 = "3261d098ae472ec29159b724cf4851d6304d7798e3da6daa4d34be8d308b1a2c";
};
dependencies = [];
};
racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "racer-2016-01-22";
src = fetchgit {
url = "git://github.com/phildawes/racer";
rev = "1021df4b42436673f0124a62cad09e62d181635d";
sha256 = "cef501a639da79bce31532b5f06570bd9c255a3d29ac97c6a4b67d640758bddb";
};
dependencies = [];
buildPhase = ''
find . -type f -not -name 'racer.vim' -exec rm -rf {} \;
rm -rf editors images src
'';
};
neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neocomplete-vim-2016-01-22";
src = fetchgit {
url = "git://github.com/shougo/neocomplete.vim";
rev = "1606b89be1c4718115503156a657344bb3c62593";
sha256 = "18c11d7f2aab440d895a742d63c58df5aa7d6353cbbf396ff31d1c85c617295a";
};
dependencies = [];
};
neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neosnippet-snippets-2016-01-22";
src = fetchgit {
url = "git://github.com/shougo/neosnippet-snippets";
rev = "ac866f64a507f8a9c7e2691d947e5eaea679e50b";
sha256 = "b1493c4b26ec68fab5e994f462c71f8db0341a2d4b8e42c4ee4f2604562b1247";
};
dependencies = [];
};
neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neosnippet-vim-2016-01-20";
src = fetchgit {
url = "git://github.com/shougo/neosnippet.vim";
rev = "52f8a2948957018572760837c165113dbb450e2b";
sha256 = "a3451afd1896c0198fa9a3f3fd354efd2d0c7f1b59c15b43adf5db1b6c5e276b";
};
dependencies = [];
};
unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "unite-vim-2016-01-17";
src = fetchgit {
url = "git://github.com/shougo/unite.vim";
rev = "c9ce3b13c19352e3b791db227aa373c0b028d656";
sha256 = "34319f371b11d97ca3b08b367c919f534bff13a8ab10cf532207e1bf62092f72";
};
dependencies = [];
};
vimproc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vimproc-vim-2016-01-06";
src = fetchgit {
url = "git://github.com/shougo/vimproc.vim";
rev = "aa075b9b56839e1adb08421d2e9837f90e59acad";
sha256 = "bc587f1cca4dfe8f22af5eecf290a624cbebfdb989906cc02d5471325464b301";
};
dependencies = [];
buildInputs = [ which ];
buildPhase = ''
substituteInPlace autoload/vimproc.vim \
--replace vimproc_mac.so vimproc_unix.so \
--replace vimproc_linux64.so vimproc_unix.so \
--replace vimproc_linux32.so vimproc_unix.so
make -f make_unix.mak
'';
};
vimshell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vimshell-vim-2015-12-23";
src = fetchgit {
url = "git://github.com/shougo/vimshell.vim";
rev = "a5b3d99ba84e76cf94195c37ab762aef5f7b6e25";
sha256 = "9a58b00cca9b2cf7ef73cdef2174ab69b7fb427130e5b125b96c6b385dec1947";
};
dependencies = [ "vimproc-vim" ];
};
gundo-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "gundo-vim-2016-01-19";
src = fetchgit {
url = "git://github.com/sjl/gundo.vim";
rev = "e7fe41024ace9047eee610f23311d44fd9d917c0";
sha256 = "30955656dd2cb6017e14658a3a5e98c79ec87ff1264b70cd6f628a4f3216bfcd";
};
dependencies = [];
};
vim-hardtime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-hardtime-2014-10-21";
src = fetchgit {
url = "git://github.com/takac/vim-hardtime";
rev = "b401c72528d1c23e4cc9bc9585fda4361d0199bf";
sha256 = "65e4bda7531076147fc46f496c8e56c740d1fcf8fe85c18cb2d2070d0c3803cd";
};
dependencies = [];
};
vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-quickrun-2015-12-28";
src = fetchgit {
url = "git://github.com/thinca/vim-quickrun";
rev = "da5328d0aec495e4dc25232fd769a8a2e56d8f7d";
sha256 = "a70e2ffa05a2cc2306483e3ecc09972bcdf2d11bfafcfbf3f8195e23475e7102";
};
dependencies = [];
};
molokai = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "molokai-2015-11-11";
src = fetchgit {
url = "git://github.com/tomasr/molokai";
rev = "c67bdfcdb31415aa0ade7f8c003261700a885476";
sha256 = "3a0cd4eef9b4e3a4fd826c66a8edec44a087d04f500217981a84fb59b2fc3ade";
};
dependencies = [];
};
vim-eunuch = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-eunuch-2015-06-30";
src = fetchgit {
url = "git://github.com/tpope/vim-eunuch";
rev = "eb8b2d54fb537ee93f762f6331265057a3f69727";
sha256 = "ec9194bf2ec97ae3c0f5818fb8a7a9edaf4ea93ca790df7c4d6a4e2486218fe6";
};
dependencies = [];
};
hasksyn = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "hasksyn-2014-09-03";
src = fetchgit {
url = "git://github.com/travitch/hasksyn";
rev = "c434040bf13a17ca20a551223021b3ace7e453b9";
sha256 = "b1a735928aeca7011b83133959d59b9c95ab8535fd00ce9968fae4c3b1381931";
};
dependencies = [];
};
vim-haskellconceal = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-haskellconceal-2014-10-28";
src = fetchgit {
url = "git://github.com/twinside/vim-haskellconceal";
rev = "f73c5dd660b7009a050b131783d7c17b4954e4d9";
sha256 = "1ebf98b170642d342207eb8c16551f9969f884b3be975b8755f1018947053ba8";
};
dependencies = [];
};
youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "youcompleteme-2016-01-20";
src = fetchgit {
url = "git://github.com/valloric/youcompleteme";
rev = "d05bf551a677ac70d5b6de707a7174a97dccd4dd";
sha256 = "28478612ddd2b917170e88d069687b65778fcb71a31f4aca7c26aa478b09a849";
};
dependencies = [];
buildInputs = [
python go cmake
(if stdenv.isDarwin then llvmPackages.clang else llvmPackages.clang-unwrapped)
llvmPackages.llvm
] ++ stdenv.lib.optional stdenv.isDarwin Cocoa;
buildPhase = ''
patchShebangs .
substituteInPlace plugin/youcompleteme.vim \
--replace "'ycm_path_to_python_interpreter', '''" "'ycm_path_to_python_interpreter', '${python}/bin/python'"
mkdir build
pushd build
cmake -G "Unix Makefiles" . ../third_party/ycmd/cpp -DPYTHON_LIBRARIES:PATH=${python}/lib/libpython2.7.so -DPYTHON_INCLUDE_DIR:PATH=${python}/include/python2.7 -DUSE_CLANG_COMPLETER=ON -DUSE_SYSTEM_LIBCLANG=ON
make ycm_support_libs -j''${NIX_BUILD_CORES} -l''${NIX_BUILD_CORES}}
${python}/bin/python ../third_party/ycmd/build.py --gocode-completer --clang-completer --system-libclang
popd
'';
meta = {
description = "Fastest non utf-8 aware word and C completion engine for Vim";
homepage = http://github.com/Valloric/YouCompleteMe;
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [marcweber jagajaga];
platforms = stdenv.lib.platforms.unix;
};
};
vim-pandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-pandoc-2015-10-20";
src = fetchgit {
url = "git://github.com/vim-pandoc/vim-pandoc";
rev = "7d7fdeabb83808f669f4cab37d7950b1bed8adbe";
sha256 = "451e520ca62cf1207da0f22c2c23f4502f81c0b5a662cd9bfb898e1f53301c41";
};
dependencies = [];
};
vim-pandoc-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-pandoc-syntax-2015-11-05";
src = fetchgit {
url = "git://github.com/vim-pandoc/vim-pandoc-syntax";
rev = "40c65141bc8c771f270ce8251a99ccdda1ab102c";
sha256 = "c1be96f358b211d8a5126fdb541a6500c9016e829527d57766b1ec18a4d8ad0e";
};
dependencies = [];
};
Colour-Sampler-Pack = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "Colour-Sampler-Pack-2012-11-29";
src = fetchgit {
url = "git://github.com/vim-scripts/Colour-Sampler-Pack";
rev = "05cded87b2ef29aaa9e930230bb88e23abff4441";
sha256 = "e3dd18f9fd36543e0c87257b7eaa999a82d75cbfa6dce4dfea403fa751c8620f";
};
dependencies = [];
};
a-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "a-vim-2010-11-06";
src = fetchgit {
url = "git://github.com/vim-scripts/a.vim";
rev = "2cbe946206ec622d9d8cf2c99317f204c4d41885";
sha256 = "ca0982873ed81e7f6545a6623b735104c574fe580d5f21b0aa3dc1557edac240";
};
dependencies = [];
};
align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "align-2012-08-07";
src = fetchgit {
url = "git://github.com/vim-scripts/align";
rev = "787662fe90cd057942bc5b682fd70c87e1a9dd77";
sha256 = "f7b5764357370f03546556bd45558837f3790b0e86afadb63cd04d714a668a29";
};
dependencies = [];
};
changeColorScheme-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "changeColorScheme-vim-2010-10-17";
src = fetchgit {
url = "git://github.com/vim-scripts/changeColorScheme.vim";
rev = "b041d49f828629d72f2232531a230d1ec5de2405";
sha256 = "094ccc132dc3991a30feb31bbdd777755294957e843517491345a4999e86cb5f";
};
dependencies = [];
};
random-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "random-vim-2010-10-17";
src = fetchgit {
url = "git://github.com/vim-scripts/random.vim";
rev = "b2d85eb24a38074eab37a5acf2a295e1f2ad8989";
sha256 = "571f4ed0a2d8c66d1c15029fb812a84b55228d07cd2e4bbbc73a33493013fed3";
};
dependencies = [];
};
tabmerge = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "tabmerge-2010-10-17";
src = fetchgit {
url = "git://github.com/vim-scripts/tabmerge";
rev = "074e5f06f26e7108a0570071a0f938a821768c06";
sha256 = "b84501b0fc5cd51bbb58f12f4c2b3a7c97b03fe2a76446b56a2c111bd4f7335f";
};
dependencies = [];
};
wombat256-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "wombat256-vim-2010-10-17";
src = fetchgit {
url = "git://github.com/vim-scripts/wombat256.vim";
rev = "8734ba45dcf5e38c4d2686b35c94f9fcb30427e2";
sha256 = "2feb7d57ab0a9f2ea44ccd606e540db64ab3285956398a50ecc562d7b8dbcd05";
};
dependencies = [];
};
vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-wakatime-2016-01-11";
src = fetchgit {
url = "git://github.com/wakatime/vim-wakatime";
rev = "91262cb3c04fe4d98ecdffe8da2197537c66359c";
sha256 = "992e41ba32d575bb0bced8b2616cf08aab73f9980292fbc58c94c7f99f914540";
};
dependencies = [];
buildInputs = [ python ];
};
command-t = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "command-t-2016-01-19";
src = fetchgit {
url = "git://github.com/wincent/command-t";
rev = "b772049e7e92a354702a9400ad185070ac7e7646";
sha256 = "425f50d0c21c7f95bdd29532f487d00c7bccb97fb2e372a87a6a5bf2fd11a916";
};
dependencies = [];
buildInputs = [ perl ruby ];
buildPhase = ''
pushd ruby/command-t
ruby extconf.rb
make
popd
'';
};
goyo = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "goyo-2015-11-15";
src = fetchgit {
url = "git://github.com/junegunn/goyo.vim";
rev = "630f5d80861beb36ae2dfa0c587ec6b51982cff5";
sha256 = "28e74ab067ce55d0dd964b5214601e851046149ccf98b377861c56225f36dc44";
};
dependencies = [];
};
matchit-zip = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "matchit-zip";
src = fetchurl {
url = "http://www.vim.org/scripts/download_script.php?src_id=8196";
name = "matchit.zip";
sha256 = "1bbm8j1bhb70kagwdimwy9vcvlrz9ax5bk2a7wrmn4cy87f9xj4l";
};
buildInputs = [ unzip ];
dependencies = [];
meta = {
url = "http://www.vim.org/scripts/script.php?script_id=39";
};
unpackPhase = ''
(
sourceRoot=d
mkdir $sourceRoot; cd $sourceRoot;
unzip $src
)
'';
};
pathogen = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "pathogen-2016-01-19";
src = fetchgit {
url = "git://github.com/tpope/vim-pathogen";
rev = "b4f20ff0acc8267875ca7a3841756fe18d55db15";
sha256 = "649bdbc573fff16bf4bbb2f50f87978576a86af6fd836bef4f64e1e7996fdfe2";
};
dependencies = [];
};
quickfixstatus = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "quickfixstatus-2011-09-02";
src = fetchgit {
url = "git://github.com/dannyob/quickfixstatus";
rev = "fd3875b914fc51bbefefa8c4995588c088163053";
sha256 = "7b6831d5da1c23d95f3158c67e4376d32c2f62ab2e30d02d3f3e14dcfd867d9b";
};
dependencies = [];
};
rainbow_parentheses = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "rainbow_parentheses-2013-03-04";
src = fetchgit {
url = "git://github.com/kien/rainbow_parentheses.vim";
rev = "eb8baa5428bde10ecc1cb14eed1d6e16f5f24695";
sha256 = "47975a426d06f41811882691d8a51f32bc72f590477ed52b298660486b2488e3";
};
dependencies = [];
};
rust = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "rust-2015-01-29";
src = fetchgit {
url = "git://github.com/wting/rust.vim";
rev = "2450ecf3091cc7c2711ca9f00eae8e3bedd04376";
sha256 = "9d2e8b2c06d6100f9a1e76644313d457a2ff955241d8f712de6fddd0b7f5c4ee";
};
dependencies = [];
};
sensible = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "sensible-2015-12-26";
src = fetchgit {
url = "git://github.com/tpope/vim-sensible";
rev = "680a5c693213daa158c816f068fffa895d961dc9";
sha256 = "959b55a97974d85374eccb58379c3f69c0ec43459d4df2484e42a437c61e34bc";
};
dependencies = [];
};
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 = [];
};
snipmate = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "snipmate-2015-10-27";
src = fetchgit {
url = "git://github.com/garbas/vim-snipmate";
rev = "7f91de39088138491e40a35a855adb70677b02d3";
sha256 = "e8c70bbad496fc1306814fbb078736a93d4f418d16f7692f4e37dbcc00ec6633";
};
dependencies = ["vim-addon-mw-utils" "tlib"];
};
sourcemap = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "sourcemap-2012-09-19";
src = fetchgit {
url = "git://github.com/chikatoike/sourcemap.vim";
rev = "0dd82d40faea2fdb0771067f46c01deb41610ba1";
sha256 = "a08c77aea39be4a0a980d62673d1d17fecc518a8aeb9101210e453aaacb78fbd";
};
dependencies = [];
};
surround = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "surround-2015-08-07";
src = fetchgit {
url = "git://github.com/tpope/vim-surround";
rev = "2d05440ad23f97a7874ebd9b5de3a0e65d25d85c";
sha256 = "e5372cbb384e747181e3dfe4a53f042da18bd0d6af7a01184850ecb084ddb350";
};
dependencies = [];
};
table-mode = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "table-mode-2015-12-03";
src = fetchgit {
url = "git://github.com/dhruvasagar/vim-table-mode";
rev = "2ab64777a5b81e240810999eb6e7dc65e1de5461";
sha256 = "64aff63c0aeb696f087cf41021867e1576e4fe8d392d36ec2ca46ddec104a8e1";
};
dependencies = [];
};
taglist = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "taglist";
src = fetchurl {
url = "http://www.vim.org/scripts/download_script.php?src_id=19574";
name = "taglist_46.zip";
sha256 = "18cbv462vwg7vip2p99qlahm99hswav96cj4ki227kyi05q2lkjj";
};
buildInputs = [ unzip ];
dependencies = [];
meta = {
url = "http://www.vim.org/scripts/script.php?script_id=273";
};
setSourceRoot = ''
export sourceRoot=taglist
mkdir taglist
mv doc taglist
mv plugin taglist
'';
};
tlib = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "tlib-2016-01-21";
src = fetchgit {
url = "git://github.com/tomtom/tlib_vim";
rev = "3232708995e0e61d8e39af40e7a92598e30b84e8";
sha256 = "525c31d4fdef8c44709b8d0b77d8ef70acf77b2375df40837088aeb0d4368747";
};
dependencies = [];
};
undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "undotree-2015-12-16";
src = fetchgit {
url = "git://github.com/mbbill/undotree";
rev = "39e5cf0fc241c64e920f91d52299b444475d54df";
sha256 = "767c84917392d1b370ef542c218c0f7bd642e59a7176735bbdd80c8a8f8b04ca";
};
dependencies = [];
};
vim-addon-actions = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-actions-2014-09-22";
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-actions";
rev = "a5d20500fb8812958540cf17862bd73e7af64936";
sha256 = "d2c3eb7a1f29e7233c6fcf3b02d07efebe8252d404ee593419ad399a5fdf6383";
};
dependencies = ["vim-addon-mw-utils" "tlib"];
};
vim-addon-async = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-async-2013-10-18";
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-async";
rev = "dadc96e188f1cdacbac62129eb29a1eacfed792c";
sha256 = "27f941e21a8ca5940bd20914e2a9e3809e554f3ef2c27b3bafb9a153107a5d07";
};
dependencies = ["vim-addon-signs"];
};
vim-addon-background-cmd = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-background-cmd-2015-12-11";
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-background-cmd";
rev = "abf2abf339652d2bc79da81f9d131edfe2755f5a";
sha256 = "06223ebaa157e17434cc09dae474324c105374e4e05d85695a05c7d0a2761c20";
};
dependencies = ["vim-addon-mw-utils"];
};
vim-addon-commenting = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-commenting-2013-06-10";
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-commenting";
rev = "b7cf748ac1c9bf555cbd347589e3b7196030d20b";
sha256 = "4ad7d5f6669f0a1b4a24c9ce3649c030d7d3fc8588de4d4d6c3269140fbe9b3e";
};
dependencies = [];
};
vim-addon-completion = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-completion-2015-02-10";
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-completion";
rev = "021c449a5ce1ce4ac0af5955e05b0279c1cc0e75";
sha256 = "969a474749edf7e4443d2540eaf12e891cc0a3f5533e62e081d32408f403a0ea";
};
dependencies = ["tlib"];
};
vim-addon-errorformats = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-errorformats-2014-11-05";
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-errorformats";
rev = "dcbb203ad5f56e47e75fdee35bc92e2ba69e1d28";
sha256 = "a1260206545d5ae17f2e6b3319f5cf1808b74e792979b1c6667d75974cc53f95";
};
dependencies = [];
};
vim-addon-goto-thing-at-cursor = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-goto-thing-at-cursor-2012-01-11";
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-goto-thing-at-cursor";
rev = "f052e094bdb351829bf72ae3435af9042e09a6e4";
sha256 = "34658ac99d9a630db9c544b3dfcd2c3df69afa5209e27558cc022b7afc2078ea";
};
dependencies = ["tlib"];
};
vim-addon-local-vimrc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-local-vimrc-2015-03-19";
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-local-vimrc";
rev = "6a27f95b35befa70cd0d049329cd0920566c764b";
sha256 = "f0687e08f380ff085b6fa3e708d1631049571706f55d796e22612aff02e51459";
};
dependencies = [];
};
vim-addon-manager = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-manager-2014-12-03";
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-manager";
rev = "fda9d2f4522024aa8bd8b8305e6a71c4a4a28c07";
sha256 = "a3b5da9bcc01c6f0fb0a5e13a6f9efb58471339ed32c480fde96856bb9e1e7be";
};
dependencies = [];
buildInputs = stdenv.lib.optional stdenv.isDarwin Cocoa;
};
vim-addon-mru = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-mru-2013-08-08";
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-mru";
rev = "e41e39bd9d1bf78ccfd8d5e1bc05ae5e1026c2bb";
sha256 = "15b70f796f28cbd999060fea7f47408fa8a6cb176cd4915b9cc3dc6c53eed960";
};
dependencies = ["vim-addon-other" "vim-addon-mw-utils"];
};
vim-addon-mw-utils = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-mw-utils-2012-11-05";
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-mw-utils";
rev = "0c5612fa31ee434ba055e21c76f456244b3b5109";
sha256 = "4e1b6d1b59050f1063e58ef4bee9e9603616ad184cd9ef7466d0ec3d8e22b91c";
};
dependencies = [];
};
vim-addon-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-nix-2015-03-10";
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-nix";
rev = "2aed79ba5d8c5e6abd102de77e55e242f61b17f1";
sha256 = "0e326e2c6cb6597ca533a64a845ef9dd946cd249250375ef9775d974ecef37e2";
};
dependencies = ["vim-addon-completion" "vim-addon-goto-thing-at-cursor" "vim-addon-errorformats" "vim-addon-actions" "vim-addon-mw-utils" "tlib"];
};
vim-addon-other = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-other-2014-07-15";
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-other";
rev = "f78720c9cb5bf871cabb13c7cbf94378dbf0163b";
sha256 = "43f027e4b7576031072515c23c2b09f7f2c8bba7ee43a1e2041a4371bd954d1b";
};
dependencies = ["vim-addon-actions" "vim-addon-mw-utils"];
};
vim-addon-php-manual = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-php-manual-2015-01-01";
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-php-manual";
rev = "5f9810dd1f6e9f36a45f637ae6260ccff09256ff";
sha256 = "3942eb6a7191c308beab240e91c99ee4e2c52e2d672503d46f98312e823b86cd";
};
dependencies = [];
};
vim-addon-signs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-signs-2013-04-19";
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-signs";
rev = "17a49f293d18174ff09d1bfff5ba86e8eee8e8ae";
sha256 = "a9c03a32e758d51106741605188cb7f00db314c73a26cae75c0c9843509a8fb8";
};
dependencies = [];
};
vim-addon-sql = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-sql-2014-01-18";
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-sql";
rev = "05b8a0c211f1ae4c515c64e91dec555cdf20d90b";
sha256 = "a1334ae694e0a03229bacc8ba7e08e7223df240244c7378e3f1bd91d74e957c2";
};
dependencies = ["vim-addon-completion" "vim-addon-background-cmd" "tlib"];
};
vim-addon-syntax-checker = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-syntax-checker-2013-07-12";
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-syntax-checker";
rev = "8eb7217e636ca717d4de5cd03cc0180c5b66ae77";
sha256 = "aef048e664653b5007df71ac24ed34ec55d8938c763d3f80885a122e445a9b3d";
};
dependencies = ["vim-addon-mw-utils" "tlib"];
};
vim-addon-toggle-buffer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-toggle-buffer-2012-01-13";
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-toggle-buffer";
rev = "a1b38b9c5709cba666ed2d84ef06548f675c6b0b";
sha256 = "672166ecfe0599177afb56b444366f587f77e9659c256ac4e41ee45cb2df6055";
};
dependencies = ["vim-addon-mw-utils" "tlib"];
};
vim-addon-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-addon-xdebug-2014-08-29";
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-xdebug";
rev = "45f26407305b4ce6f8f5f37d2b5e6e4354104172";
sha256 = "0a7bf2caf36772c94bd25bfbf46bf628623809c9cfab447ff788eb74149464ef";
};
dependencies = ["WebAPI" "vim-addon-mw-utils" "vim-addon-signs" "vim-addon-async"];
};
vim-airline = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-airline-2016-01-22";
src = fetchgit {
url = "git://github.com/bling/vim-airline";
rev = "fb255b570de5582af13563e243fba743dfd0edc9";
sha256 = "2dbd61c157ba58213bdccb595bfa13951f4e1db8fa4fbce8ddf94aa3a87c938c";
};
dependencies = [];
};
vim-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-coffee-script-2015-04-20";
src = fetchgit {
url = "git://github.com/kchmck/vim-coffee-script";
rev = "32fe889b8cafd3a4921ef8e6485156453ff58c42";
sha256 = "d7162b2546c9949c96811d7a72c17ae2db9871697ee65ed0b1a8f0287d278690";
};
dependencies = [];
};
vim-easy-align = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-easy-align-2015-10-09";
src = fetchgit {
url = "git://github.com/junegunn/vim-easy-align";
rev = "7cb559eb70600bbd81afbb2d7f60d98334f631e2";
sha256 = "2ea40064f64a8a4f0f1e405ea5db5a3e79424cdec44d033c3d65cc40a2a19b18";
};
dependencies = [];
};
vim-gista = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-gista-2016-01-23";
src = fetchgit {
url = "git://github.com/lambdalisue/vim-gista";
rev = "2021858d9cada2289a866387ba728dd025093aa1";
sha256 = "1e3e925cdb6a9296f20c2261efb96eac0792e12c3b7a4f6a1637ac0a96255eb4";
};
dependencies = [];
};
vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-gitgutter-2016-01-19";
src = fetchgit {
url = "git://github.com/airblade/vim-gitgutter";
rev = "4510e9b33506b4b09168c99934c42ee1ce89bba2";
sha256 = "77d97922e8970fcdb037272a53c2ab4209d804aced7ae654f6aeb4501705bcd8";
};
dependencies = [];
};
vim-iced-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-iced-coffee-script-2013-12-27";
src = fetchgit {
url = "git://github.com/noc7c9/vim-iced-coffee-script";
rev = "e42e0775fa4b1f8840c55cd36ac3d1cedbc1dea2";
sha256 = "c7859591975a51a1736f99a433d7ca3e7638b417340a0472a63995e16d8ece93";
};
dependencies = [];
};
vim-latex-live-preview = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-latex-live-preview-2015-05-11";
src = fetchgit {
url = "git://github.com/xuhdev/vim-latex-live-preview";
rev = "7695dd4ebddb735bec632d468e2202d070029cb8";
sha256 = "3551e2a84a98b07f5edce6e35bad5cd2a78da1ef60dd94202c623e238b05bfc8";
};
dependencies = [];
};
vim-multiple-cursors = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-multiple-cursors-2016-01-14";
src = fetchgit {
url = "git://github.com/terryma/vim-multiple-cursors";
rev = "e543fc86f0c6a8981c9679beceb06482778c3531";
sha256 = "d10506c2196b32d389027a359f382d41c7c972f615a6745b9ee41c17741e062a";
};
dependencies = [];
};
vim-signature = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-signature-2015-11-11";
src = fetchgit {
url = "git://github.com/kshenoy/vim-signature";
rev = "7cabfb5a3d3b45e739eb1d7e198782fb4a5a23da";
sha256 = "18a8ab7ba9e74d2f65c64c0c316ef824e48f21196520dfd292522c1eb8c87cb3";
};
dependencies = [];
};
vim-signify = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-signify-2016-01-15";
src = fetchgit {
url = "git://github.com/mhinz/vim-signify";
rev = "4f69c11c7cd7b75bb23cf7565f278af918816546";
sha256 = "816f7472f04043139f216b91fc36612a9d73cddd86ca6c1cf86a7d48ca2d20e3";
};
dependencies = [];
};
vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-snippets-2016-01-17";
src = fetchgit {
url = "git://github.com/honza/vim-snippets";
rev = "0fc7fd1181f33b26c015d0f306d149b756f9d679";
sha256 = "d67ccdcfa42e8e713e7a5bee34b5b150fb955a81fdddfe9c956a1f652f1235b6";
};
dependencies = [];
};
vim-webdevicons = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-webdevicons-2015-12-21";
src = fetchgit {
url = "git://github.com/ryanoasis/vim-devicons";
rev = "8ac3e02537d32648c3f9738c711639f8b940460c";
sha256 = "9d4ee89a551ab9e1ec3938e1eba1fd138bbee975ce3b247b5f56eb2613daefbc";
};
dependencies = [];
};
vim2hs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim2hs-2014-04-16";
src = fetchgit {
url = "git://github.com/dag/vim2hs";
rev = "f2afd55704bfe0a2d66e6b270d247e9b8a7b1664";
sha256 = "485fc58595bb4e50f2239bec5a4cbb0d8f5662aa3f744e42c110cd1d66b7e5b0";
};
dependencies = [];
};
vimwiki = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vimwiki-2015-12-10";
src = fetchgit {
url = "git://github.com/vimwiki/vimwiki";
rev = "3bd3d9b86036b21aecd69f0a1e572643d626c280";
sha256 = "7a10ae3881af0d17a041ffd766680ceedf706411abbbedccf64e9e777fabd5c8";
};
dependencies = [];
};
vinegar = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vinegar-2016-01-30";
src = fetchgit {
url = "git://github.com/tpope/vim-vinegar";
rev = "75fc3824bc09053f22735d6726c5cfd614c15642";
sha256 = "19fc1487169f1d8941ffddda1ffadd842ef4a773de2d32536eae52cf494154a6";
};
dependencies = [];
};
vundle = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vundle-2015-11-04";
src = fetchgit {
url = "git://github.com/gmarik/vundle";
rev = "5f70ae6025e951f0154e3940d123138adffa4c88";
sha256 = "c063cabca479449a3330c14e879536473d4fdb0ca4b384c9c8be18c198a929fa";
};
dependencies = [];
};
}