1299 lines
44 KiB
Nix
1299 lines
44 KiB
Nix
# TODO check that no license information gets lost
|
|
{ fetchurl, bash, stdenv, python, cmake, vim, vimUtils, perl, ruby, unzip,
|
|
which, fetchgit, fetchFromGitHub, fetchhg, fetchzip, llvmPackages, zip,
|
|
vim_configurable, vimPlugins, xkb_switch
|
|
}:
|
|
|
|
let
|
|
|
|
inherit (vimUtils.override {inherit vim;}) rtpPath addRtp buildVimPlugin
|
|
buildVimPluginFrom2Nix vimHelpTags;
|
|
in
|
|
|
|
# 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 {
|
|
|
|
### section I: manually mantained plugins
|
|
|
|
a = buildVimPlugin {
|
|
name = "a-git-2010-11-06";
|
|
src = fetchgit {
|
|
url = "https://github.com/vim-scripts/a.vim.git";
|
|
rev = "2cbe946206ec622d9d8cf2c99317f204c4d41885";
|
|
sha256 = "ca0982873ed81e7f6545a6623b735104c574fe580d5f21b0aa3dc1557edac240";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/vim-scripts/a.vim;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
airline = vim-airline;
|
|
|
|
align = buildVimPlugin {
|
|
name = "align-git-2012-08-07";
|
|
src = fetchgit {
|
|
url = "https://github.com/vim-scripts/align.git";
|
|
rev = "787662fe90cd057942bc5b682fd70c87e1a9dd77";
|
|
sha256 = "f7b5764357370f03546556bd45558837f3790b0e86afadb63cd04d714a668a29";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/vim-scripts/align;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
alternative = a; # backwards compat, added 2014-10-21
|
|
|
|
calendar = buildVimPlugin {
|
|
name = "calendar-git-2014-10-19";
|
|
src = fetchgit {
|
|
url = "https://github.com/itchyny/calendar.vim.git";
|
|
rev = "44890a96d80bcd5fe62307e4bcb4d4085010e324";
|
|
sha256 = "55f38e3e0af0f95229c654420c332668f93ac941f044c0573c7f1b26030e9202";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/itchyny/calendar.vim;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
command-t = buildVimPlugin rec {
|
|
version = "1.8";
|
|
name = "command-t-${version}";
|
|
src = fetchzip {
|
|
inherit name;
|
|
url = "https://github.com/wincent/Command-T/archive/${version}.tar.gz";
|
|
sha256 = "186qz1smf7w91r68p724whg6d821f7ph6ks63l2vkhff8f9qqhrc";
|
|
};
|
|
buildInputs = [ perl ruby ];
|
|
buildPhase = ''
|
|
pushd ruby/command-t
|
|
ruby extconf.rb
|
|
make
|
|
popd
|
|
'';
|
|
};
|
|
|
|
command_T = command-t; # backwards compat, added 2014-10-18
|
|
|
|
easymotion = buildVimPlugin {
|
|
name = "easymotion-git-2014-09-29";
|
|
src = fetchgit {
|
|
url = "https://github.com/lokaltog/vim-easymotion.git";
|
|
rev = "868cd71710a48e8ec8acffeabd1eebfb10812c77";
|
|
sha256 = "13c8b93c257fcbb0f6e0eb197700b4f8cbe4cf4846d29f1aba65f625202b9d77";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/lokaltog/vim-easymotion;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
eighties = buildVimPlugin rec {
|
|
version = "1.0.4";
|
|
name = "eighties-${version}";
|
|
src = fetchurl {
|
|
url = "https://github.com/justincampbell/vim-eighties/archive/${version}.tar.gz";
|
|
sha256 = "0cjd9hbg2qd7jjkvyi15f9ysp7m3aa2sg8nvbf80yb890rfkwaqr";
|
|
};
|
|
meta = with stdenv.lib; {
|
|
description = "Automatically resizes your windows to 80 characters";
|
|
homepage = https://github.com/justincampbell/vim-eighties;
|
|
license = licenses.publicDomain;
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
};
|
|
|
|
gitgutter = vim-gitgutter;
|
|
|
|
golang = buildVimPlugin {
|
|
name = "golang-git-2014-08-06";
|
|
src = fetchgit {
|
|
url = "https://github.com/jnwhiteh/vim-golang.git";
|
|
rev = "e6d0c6a72a66af2674b96233c4747661e0f47a8c";
|
|
sha256 = "1231a2eff780dbff4f885fcb4f656f7dd70597e1037ca800470de03bf0c5e7af";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/jnwhiteh/vim-golang;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
hardtime = buildVimPlugin {
|
|
name = "hardtime-git-2014-10-21";
|
|
src = fetchgit {
|
|
url = "https://github.com/takac/vim-hardtime.git";
|
|
rev = "b401c72528d1c23e4cc9bc9585fda4361d0199bf";
|
|
sha256 = "65e4bda7531076147fc46f496c8e56c740d1fcf8fe85c18cb2d2070d0c3803cd";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/takac/vim-hardtime;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
haskellconceal = buildVimPlugin {
|
|
name = "haskellconceal-git-2014-08-07";
|
|
src = fetchgit {
|
|
url = "https://github.com/twinside/vim-haskellconceal.git";
|
|
rev = "1d85e8f10b675d38ec117368ec8032f486c27f98";
|
|
sha256 = "8ae762939ea435333031a094f3c63e6edd534ac849f0008fa0440440f1f2f633";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/twinside/vim-haskellconceal;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
haskellConceal = haskellconceal; # backwards compat, added 2014-10-18
|
|
|
|
hasksyn = buildVimPlugin {
|
|
name = "hasksyn-git-2014-09-03";
|
|
src = fetchgit {
|
|
url = "https://github.com/travitch/hasksyn.git";
|
|
rev = "c434040bf13a17ca20a551223021b3ace7e453b9";
|
|
sha256 = "b1a735928aeca7011b83133959d59b9c95ab8535fd00ce9968fae4c3b1381931";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/travitch/hasksyn;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
hdevtools = buildVimPlugin {
|
|
name = "hdevtools-git-2012-12-29";
|
|
src = fetchgit {
|
|
url = "https://github.com/bitc/vim-hdevtools.git";
|
|
rev = "474947c52ff9c93dd36f3c49de90bd9a78f0baa1";
|
|
sha256 = "bf5f096b665c51ce611c6c1bfddc3267c4b2f94af84b04482b07272a6a5a92f3";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/bitc/vim-hdevtools;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
hier = buildVimPlugin {
|
|
name = "hier-git-2011-08-27";
|
|
src = fetchgit {
|
|
url = "https://github.com/jceb/vim-hier.git";
|
|
rev = "0b8c365263551a67404ebd7e528c55e17c1d3de7";
|
|
sha256 = "f62836545abfe379f9c5410da28409947407cd282ef784b2db89aed0756a1785";
|
|
};
|
|
buildInputs = [ vim ];
|
|
meta = {
|
|
homepage = https://github.com/jceb/vim-hier;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
idris-vim = buildVimPlugin {
|
|
name = "idris-vim-git-2014-10-14";
|
|
src = fetchgit {
|
|
url = "https://github.com/idris-hackers/idris-vim.git";
|
|
rev = "78730e511cae0a067f79da1168466601553f619b";
|
|
sha256 = "47638b25fa53203e053e27ec6f135fd63ae640edbe37e62d7450a8c434a4cc6b";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/idris-hackers/idris-vim;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
ipython = buildVimPlugin {
|
|
name = "ipython-git-2014-07-17";
|
|
src = fetchgit {
|
|
url = "https://github.com/ivanov/vim-ipython.git";
|
|
rev = "9ce4f201ce26e9f01d56a6040ddf9255aab27272";
|
|
sha256 = "444dede544f9b519143ecc3a6cdfef0c4c32043fc3cd69f92fdcd86c1010e824";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/ivanov/vim-ipython;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
latex-box = buildVimPlugin {
|
|
name = "latex-box-git-2014-10-05";
|
|
src = fetchgit {
|
|
url = "https://github.com/latex-box-team/latex-box.git";
|
|
rev = "3e000fb161bdf6efe7aef517aef276554aeabb65";
|
|
sha256 = "462803aceec5904943074e11888482ef6c49c8a5e26d6728ebcb2c4f5dbbb6a4";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/latex-box-team/latex-box;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
lushtags = buildVimPlugin {
|
|
name = "lushtags-git-2013-12-27";
|
|
src = fetchgit {
|
|
url = "https://github.com/bitc/lushtags.git";
|
|
rev = "429fab3b748ae04ee5de0cbf75d947f15441e798";
|
|
sha256 = "5170019fbe64b15be30a0ba82e6b01364d115ccad6ef690a6df86f73af22a0a7";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/bitc/lushtags;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
neco-ghc = buildVimPlugin {
|
|
name = "neco-ghc-git-2014-10-17";
|
|
src = fetchgit {
|
|
url = "https://github.com/eagletmt/neco-ghc.git";
|
|
rev = "fffdf57dcb312f874a43a202157b5efecfe3d9de";
|
|
sha256 = "464b24e3151ebaf0e95c25f09cb047e2542d5dd9100087e538d0a5e46bd0e638";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/eagletmt/neco-ghc;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
necoGhc = neco-ghc; # backwards compat, added 2014-10-18
|
|
|
|
neocomplete = buildVimPlugin {
|
|
name = "neocomplete-git-2014-11-18";
|
|
src = fetchgit {
|
|
url = "https://github.com/Shougo/neocomplete.vim.git";
|
|
rev = "26aef680ece29047089e7540b78696f1e6336be2";
|
|
sha256 = "42734ddb29f6661de687e0d18c5ddbd443adc6d2f69fe8e44d0e47473f1bc0ae";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/Shougo/neocomplete.vim;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
neosnippet = buildVimPlugin {
|
|
name = "neosnippet-git-2014-11-18";
|
|
src = fetchgit {
|
|
url = "https://github.com/Shougo/neosnippet.vim.git";
|
|
rev = "811176b29b1a60a164c9878f8dcbe4a680ee32e5";
|
|
sha256 = "903b6fa01511e319e5ce3efa3a7007047512f5f7ee7d61b69cd4a324420cf718";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/Shougo/neosnippet.vim;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
neosnippet-snippets = buildVimPlugin {
|
|
name = "neosnippet-snippets-git-2014-11-17";
|
|
src = fetchgit {
|
|
url = "https://github.com/Shougo/neosnippet-snippets.git";
|
|
rev = "a15cdc307a62d64c3510b4a1097a8bd174746894";
|
|
sha256 = "8d69b93163dd93474422bf4f362130151f25e2c9fad3500ba170161c24bf5bce";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/Shougo/neosnippet-snippets;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
nerdcommenter = The_NERD_Commenter;
|
|
|
|
quickrun = buildVimPlugin {
|
|
name = "quickrun-git-2014-10-08";
|
|
src = fetchgit {
|
|
url = "https://github.com/thinca/vim-quickrun.git";
|
|
rev = "ae97cef42ae142306e9431dce9ab97c4353e5254";
|
|
sha256 = "3219fadb3732c895c82b8bcff1d6e86f0917cd5ac7bf34180c27bb3f75ed1787";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/thinca/vim-quickrun;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
racer = buildVimPlugin {
|
|
name = "racer-git-2014-11-24";
|
|
src = fetchgit {
|
|
url = https://github.com/phildawes/racer;
|
|
rev = "50655ffd509bea09ea9b310970dedfeaf5a33cf3";
|
|
sha256 = "0bd456i4nz12z39ljnw1kjg8mcflvm7rjql2r80fb038c7rd6xi1";
|
|
};
|
|
buildPhase = ''
|
|
find . -type f -not -name 'racer.vim' -exec rm -rf {} \;
|
|
mkdir plugin
|
|
mv ./editors/racer.vim plugin/racer.vim
|
|
rm -rf editors images src
|
|
'';
|
|
meta = {
|
|
homepage = https://github.com/phildawes/racer;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
shabadou = buildVimPlugin {
|
|
name = "shabadou-git-2014-07-27";
|
|
src = fetchgit {
|
|
url = "https://github.com/osyo-manga/shabadou.vim.git";
|
|
rev = "c5af30bb0c028d53cfd89e00cab636c844034a9a";
|
|
sha256 = "392efa8a5e725219e478b571d9a30ddba88d47662467ed3123a168e8b55c4de6";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/osyo-manga/shabadou.vim;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
stylish-haskell = buildVimPlugin {
|
|
name = "stylish-haskell-git-2014-07-14";
|
|
src = fetchgit {
|
|
url = "https://github.com/nbouscal/vim-stylish-haskell.git";
|
|
rev = "453fd203aee3d7305ea8e4088ff53bd1f5933d75";
|
|
sha256 = "c0e5010e1e8e56b179ce500387afb569f051c45b37ce92feb4350f293df96a8c";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/nbouscal/vim-stylish-haskell;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
stylishHaskell = stylish-haskell; # backwards compat, added 2014-10-18
|
|
|
|
tabmerge = buildVimPlugin {
|
|
name = "tabmerge-git-2010-10-17";
|
|
src = fetchgit {
|
|
url = "https://github.com/vim-scripts/tabmerge.git";
|
|
rev = "074e5f06f26e7108a0570071a0f938a821768c06";
|
|
sha256 = "b84501b0fc5cd51bbb58f12f4c2b3a7c97b03fe2a76446b56a2c111bd4f7335f";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/vim-scripts/tabmerge;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
taglist = buildVimPlugin {
|
|
name = "taglist-4.6";
|
|
meta = with stdenv.lib; {
|
|
description = "Source code browser plugin";
|
|
homepage = "http://www.vim.org/scripts/script.php?script_id=273";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
src = fetchurl {
|
|
url = "http://www.vim.org/scripts/download_script.php?src_id=19574";
|
|
name = "taglist_46.zip";
|
|
sha256 = "18cbv462vwg7vip2p99qlahm99hswav96cj4ki227kyi05q2lkjj";
|
|
};
|
|
setSourceRoot = ''
|
|
export sourceRoot=taglist
|
|
mkdir taglist
|
|
mv doc taglist
|
|
mv plugin taglist
|
|
'';
|
|
buildInputs = [ unzip ];
|
|
};
|
|
|
|
thumbnail = buildVimPlugin {
|
|
name = "thumbnail-git-2014-07-24";
|
|
src = fetchgit {
|
|
url = "https://github.com/itchyny/thumbnail.vim.git";
|
|
rev = "e59a1791862ed470510a58456cc001226e177a39";
|
|
sha256 = "f36d915804e36b5f2dcea7db481da97ec60d0c90df87599a5d5499e649d97f66";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/itchyny/thumbnail.vim;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
tmux-navigator = buildVimPlugin {
|
|
name = "tmux-navigator-git-2014-09-09";
|
|
src = fetchgit {
|
|
url = "https://github.com/christoomey/vim-tmux-navigator.git";
|
|
rev = "195cdf087fea7beaf6274d0a655d157dfab3130c";
|
|
sha256 = "4235c2bfb64a9094b854cdd7303a64bbb994717f24704911c4b358b2373dfaa9";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/christoomey/vim-tmux-navigator;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
tmuxNavigator = tmux-navigator; # backwards compat, added 2014-10-18
|
|
|
|
tslime = buildVimPlugin {
|
|
name = "tslime-git-2014-06-12";
|
|
src = fetchgit {
|
|
url = "https://github.com/jgdavey/tslime.vim.git";
|
|
rev = "e801a32b27d83cb5d91afbf7c3d71bb6220f32bd";
|
|
sha256 = "47fb7165c1dcc444285cdff6fa89bbd4ace82ca79ec14ba0da6091c5f78d1251";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/jgdavey/tslime.vim;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
vimproc = buildVimPlugin {
|
|
name = "vimproc-git-2014-10-03";
|
|
src = fetchgit {
|
|
url = "https://github.com/shougo/vimproc.vim.git";
|
|
rev = "3e055023dfab4f5a4dfa05a834f9d0cb7294a82e";
|
|
sha256 = "63c2786897e8315eed2473822879b7ceb847e6021695a861892d7b9ab15a69fb";
|
|
};
|
|
buildInputs = [ which ];
|
|
|
|
buildPhase = ''
|
|
sed -i 's/vimproc_mac\.so/vimproc_unix\.so/' autoload/vimproc.vim
|
|
make -f make_unix.mak
|
|
'';
|
|
|
|
meta = {
|
|
homepage = https://github.com/shougo/vimproc.vim;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
vimshell = buildVimPlugin rec {
|
|
version = "9.2";
|
|
name = "vimshell-${version}";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An extreme shell that doesn't depend on external shells and is written completely in Vim script";
|
|
homepage = https://github.com/Shougo/vimshell.vim;
|
|
repositories.git = https://github.com/Shougo/vimshell.vim.git;
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/Shougo/vimshell.vim/archive/ver.${version}.tar.gz";
|
|
sha256 = "1pbwxdhpv6pr09b6hwkgy7grpmpwlqpsgsawl38r40q6yib8zb4a";
|
|
};
|
|
|
|
buildInputs = [ vimproc ];
|
|
|
|
preBuild = ''
|
|
sed -ie '1 i\
|
|
set runtimepath+=${vimproc}/${rtpPath}/vimproc\
|
|
' autoload/vimshell.vim
|
|
'';
|
|
};
|
|
|
|
wakatime = buildVimPlugin {
|
|
name = "wakatime-3.0.7";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "1kn50fz9hnimzic640blmb5wi64vkcn45g15i4ckfzivza4jyc73";
|
|
rev = "30ce2e30670d80ec1ef033ae4415c1f6ea46f18f";
|
|
repo = "vim-wakatime";
|
|
owner = "wakatime";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Analytics about your programming";
|
|
homepage = https://wakatime.com;
|
|
license = with licenses; bsd3;
|
|
platforms = with platforms; linux;
|
|
maintainers = with maintainers; [ nckx ];
|
|
};
|
|
|
|
buildInputs = [ python ];
|
|
};
|
|
|
|
watchdogs = buildVimPlugin {
|
|
name = "watchdogs-git-2014-10-18";
|
|
src = fetchgit {
|
|
url = "https://github.com/osyo-manga/vim-watchdogs.git";
|
|
rev = "ad222796eb88b44954340c19c39938046af26e05";
|
|
sha256 = "4c621ac2834864cf0c46f776029837913e1ba0c725a12d7cb24bf92e04ed1279";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/osyo-manga/vim-watchdogs;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
xdebug = buildVimPlugin {
|
|
name = "xdebug-git-2012-08-15";
|
|
src = fetchgit {
|
|
url = "https://github.com/joonty/vim-xdebug.git";
|
|
rev = "a4980fa65f7f159780593ee37c178281691ba2c4";
|
|
sha256 = "1ccb0e63eaf68548feb1c37b09c07c84b6bea9b350c4257549f091aa414601e2";
|
|
};
|
|
postInstall = false;
|
|
meta = {
|
|
homepage = https://github.com/joonty/vim-xdebug;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
xkbswitch = buildVimPlugin {
|
|
name = "xkbswitch-git-2015-01-18";
|
|
src = fetchgit {
|
|
url = "https://github.com/lyokha/vim-xkbswitch.git";
|
|
rev = "932765d8a45b0c8b994b920505b8f10cc7e8cad0";
|
|
sha256 = "20e1f7196b65d98687a27c8a3f2d0847701890a0818dfcfec13f24a3151b0e73";
|
|
};
|
|
buildInputs = [ xkb_switch ];
|
|
meta = {
|
|
homepage = https://github.com/lyokha/vim-xkbswitch;
|
|
maintainers = [ stdenv.lib.maintainers.jagajaga ];
|
|
};
|
|
};
|
|
|
|
YouCompleteMe = addRtp "${rtpPath}/youcompleteme" (stdenv.mkDerivation rec {
|
|
src = fetchgit {
|
|
rev = "035b6ca862da3bba0ab8aad388a485758311a464";
|
|
url = "https://github.com/Valloric/YouCompleteMe.git";
|
|
sha256 = "0l4a7mp0r888gdfzl59z8vk5jx4km58kzzqbn8v48i1k6scryvl7";
|
|
};
|
|
|
|
name = "vimplugin-youcompleteme-2015-02-05";
|
|
|
|
buildInputs = [ python cmake llvmPackages.clang ];
|
|
|
|
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
|
|
'';
|
|
|
|
# TODO: implement proper install phase rather than keeping everything in store
|
|
# TODO: support llvm based C completion, See README of git repository
|
|
installPhase = ":";
|
|
|
|
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 = [stdenv.lib.maintainers.marcweber];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
});
|
|
|
|
youcompleteme = YouCompleteMe;
|
|
|
|
YUNOcommit = buildVimPlugin {
|
|
name = "YUNOcommit";
|
|
src = fetchgit {
|
|
url = "https://github.com/esneider/YUNOcommit.vim";
|
|
rev = "981082055a73ef076d7e27477874d2303153a448";
|
|
sha256 = "4bfd80720c353884e5c373b5457397a63e5e2e4ab4a97d6ce86c1740ac3b4c56";
|
|
|
|
};
|
|
dependencies = [];
|
|
};
|
|
|
|
|
|
### section II: automatically generated plugin derivations
|
|
# Update with vimUtils.vimPlugins.pluginnames2Nix command
|
|
|
|
# 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];
|
|
};
|
|
|
|
# aliasess
|
|
tabular = Tabular;
|
|
tagbar = Tagbar;
|
|
coffee-script = vim-coffee-script;
|
|
coffeeScript = coffee-script; # backwards compat, added 2014-10-18
|
|
colors-solarized = Solarized;
|
|
colorsamplerpack = Colour_Sampler_Pack;
|
|
easy-align = vim-easy-align;
|
|
ghc-mod-vim = ghcmod;
|
|
gist-vim = Gist;
|
|
gundo = Gundo;
|
|
hoogle = Hoogle;
|
|
latex-live-preview = vim-latex-live-preview;
|
|
nerdtree = The_NERD_tree;
|
|
signature = vim-signature;
|
|
supertab = Supertab;
|
|
syntastic = Syntastic;
|
|
webapi-vim = WebAPI;
|
|
yankring = YankRing;
|
|
"sourcemap.vim" = sourcemap;
|
|
|
|
|
|
### The following derivations are generated by nix#ExportPluginsForNix
|
|
|
|
"Colour_Sampler_Pack" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Colour_Sampler_Pack";
|
|
src = fetchurl {
|
|
url = "http://www.vim.org/scripts/download_script.php?src_id=18915";
|
|
name = "ColorSamplerPack.zip";
|
|
sha256 = "1wsrb3vpqn9fncnalfpvc8r92wk1mcskm4shb3s2h9x5dyihf2rd";
|
|
};
|
|
buildInputs = [ unzip ];
|
|
dependencies = [];
|
|
meta = {
|
|
url = "http://www.vim.org/scripts/script.php?script_id=625";
|
|
};
|
|
|
|
|
|
};
|
|
"Gist" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Gist-2015-02-10";
|
|
src = fetchgit {
|
|
url = "git://github.com/mattn/gist-vim";
|
|
rev = "4d64b05bcbfdc8c22f37ff29776626be48251af7";
|
|
sha256 = "16101ab3802bbeba7e83706446474b61fbb6312270161cdb669780b54c3c04cf";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"Gundo" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Gundo";
|
|
src = fetchhg {
|
|
url = "https://bitbucket.org/sjl/gundo.vim";
|
|
rev = "eb9fc8676b89";
|
|
sha256 = "05lcxrd9ibfi02ja4jvl5y5pp884b8kh9aarw045b0mlldygv6cp";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"Hoogle" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Hoogle-2013-11-26";
|
|
src = fetchgit {
|
|
url = "git://github.com/Twinside/vim-hoogle";
|
|
rev = "81f28318b0d4174984c33df99db7752891c5c4e9";
|
|
sha256 = "e5a95db90efdb93cd06c0c6946c24ae3e401800dd0da344cc83171ff1bc696f2";
|
|
};
|
|
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 = "1de517cfc66707e44c2d4d72080ee949cfb963a087e9e52c62cc4394f13ed597";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"Supertab" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Supertab-2015-02-15";
|
|
src = fetchgit {
|
|
url = "git://github.com/ervandew/supertab";
|
|
rev = "c8bfeceb1fc92ad58f2ae6967cbfcd6fbcb0d6e7";
|
|
sha256 = "9f610d2acd57537f6fa2bfafb9300fe7d42afedf30bc4bb3fb02974743f9ab27";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"Syntastic" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Syntastic-2015-02-17";
|
|
src = fetchgit {
|
|
url = "git://github.com/scrooloose/syntastic";
|
|
rev = "47821840200cd8e14e99001caac602a37cdf8d5c";
|
|
sha256 = "becf0b07d25d9514ac7c5328d4e3deeab5731792887c8334571b72c3871a50ee";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"Tabular" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Tabular-2013-05-16";
|
|
src = fetchgit {
|
|
url = "git://github.com/godlygeek/tabular";
|
|
rev = "60f25648814f0695eeb6c1040d97adca93c4e0bb";
|
|
sha256 = "dbfbeaf833ecc87c7f505fe25c79110f10535d81065fd4a30853565d288448d6";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"Tagbar" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "Tagbar-2015-02-16";
|
|
src = fetchgit {
|
|
url = "git://github.com/majutsushi/tagbar";
|
|
rev = "a284cd009104b5c9b64a378cd98fdf4993c1689e";
|
|
sha256 = "c6458537ea211a77a8fb6f85b4d7eac1fec6714fd60398ebae00647599397922";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"The_NERD_Commenter" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "The_NERD_Commenter-2014-07-08";
|
|
src = fetchgit {
|
|
url = "git://github.com/scrooloose/nerdcommenter";
|
|
rev = "6549cfde45339bd4f711504196ff3e8b766ef5e6";
|
|
sha256 = "7624da2591153946e0e9d0637c31b551bc1f87cea8441d725bdd01b0cd972588";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"The_NERD_tree" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "The_NERD_tree-2014-11-20";
|
|
src = fetchgit {
|
|
url = "git://github.com/scrooloose/nerdtree";
|
|
rev = "3b98a7fcae8f9fff356907171f0406ff8cd28921";
|
|
sha256 = "75aa60c361c66c0bae986fc6a7111ccf529ab74409a9e11355e4c2fa065e1afc";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"UltiSnips" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "UltiSnips-2015-02-14";
|
|
src = fetchgit {
|
|
url = "git://github.com/sirver/ultisnips";
|
|
rev = "56ac14840f47521be9b61fb5ae72930f35d5d8a9";
|
|
sha256 = "a0766d809a0a858e3393429d67e68e7a85d67519e143a64e8ddd3f7fa2418ca6";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"VimOutliner" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "VimOutliner-2015-01-09";
|
|
src = fetchgit {
|
|
url = "git://github.com/vimoutliner/vimoutliner";
|
|
rev = "7c995f973c54b0d026137615af28059890edb197";
|
|
sha256 = "c48acd2d4939ece0de7a2bae42f04e2f247a087947b66da86b4fb96fb32330d9";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"WebAPI" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "WebAPI-2014-10-27";
|
|
src = fetchgit {
|
|
url = "git://github.com/mattn/webapi-vim";
|
|
rev = "a7789abffe936db56e3152e23733847f94755753";
|
|
sha256 = "a5e9560b71b9e3c242c8623972f11a9298708e99f90b4f919610b0959417a767";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"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";
|
|
};
|
|
buildInputs = [ unzip ];
|
|
dependencies = [];
|
|
meta = {
|
|
url = "http://www.vim.org/scripts/script.php?script_id=1234";
|
|
};
|
|
|
|
|
|
};
|
|
"commentary" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "commentary-2014-11-10";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-commentary";
|
|
rev = "9c685131a5facfa0d643feca3a61b41c007d8170";
|
|
sha256 = "7f92a27f16f8a3a9285b14ca9dd9c7deb6cc7391075024446e5be395cca18c1e";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"ctrlp" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "ctrlp-2013-07-29";
|
|
src = fetchgit {
|
|
url = "git://github.com/kien/ctrlp.vim";
|
|
rev = "b5d3fe66a58a13d2ff8b6391f4387608496a030f";
|
|
sha256 = "3736b2f152df20be0a0d5ed6a39929b2df1ed9bbe98f68d80db657c00f0dcb30";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"extradite" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "extradite-2015-01-26";
|
|
src = fetchgit {
|
|
url = "git://github.com/int3/vim-extradite";
|
|
rev = "a1dc4b63befd5032e65a0c94e7257d4636aa6a3f";
|
|
sha256 = "0f03c331bfa61292087ec403e5a9083f3dc03988b6d5cb6704934d2e6c646fdb";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"fugitive" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "fugitive-2015-02-08";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-fugitive";
|
|
rev = "eb8eb1850a47671a8a3639feab8b2a50577e4913";
|
|
sha256 = "d589245c1a9490a7c370ea80492a606fa207fac268a3c1bd5151fc3f326d3514";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"ghcmod" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "ghcmod-2014-10-19";
|
|
src = fetchgit {
|
|
url = "git://github.com/eagletmt/ghcmod-vim";
|
|
rev = "d5c6c7f3c85608b5b76dc3e7e001f60b86c32cb9";
|
|
sha256 = "b5a50bc1bcc0777def41cf7f18557f6674f709cbf22577ebe845ec1bb8e39e9d";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"github:MarcWeber/vim-addon-vim2nix" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "github-MarcWeber-vim-addon-vim2nix-2015-02-08";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-vim2nix";
|
|
rev = "5507ee4db7599873d72fab035c752dea245e2cd4";
|
|
sha256 = "02094bd066f930469a2acebe93f960a4b57ee1e302fe2e80a87ef9e607791295";
|
|
};
|
|
dependencies = ["vim-addon-manager"];
|
|
|
|
};
|
|
"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-2014-11-06";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-pathogen";
|
|
rev = "b9fb0dfd811004010f5f6903edef42d6004ebea2";
|
|
sha256 = "9ccb1d234d9eb8bccc3a50ff6fadcc925644a0e17cd4444623d22843c5d82e80";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"quickfixstatus" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "quickfixstatus-2011-09-02";
|
|
src = fetchgit {
|
|
url = "git://github.com/dannyob/quickfixstatus";
|
|
rev = "fd3875b914fc51bbefefa8c4995588c088163053";
|
|
sha256 = "a7f15f5404bf0719c5c1eab9c117c3ca4302b0232f959b509c364f3869a2c9fd";
|
|
};
|
|
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 = "6f467a4de21e26e7d50a74d9fd1503ea67d94bdd93fde19ed5da42552487957b";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"rust" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "rust-2015-01-29";
|
|
src = fetchgit {
|
|
url = "git://github.com/wting/rust.vim";
|
|
rev = "2450ecf3091cc7c2711ca9f00eae8e3bedd04376";
|
|
sha256 = "f7335d4265db4d0e030b6d1f23818710e8b80be4aeb42ebb60396d5327c6f669";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"sensible" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "sensible-2014-11-24";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-sensible";
|
|
rev = "b30dcf387af977acfa21732592bfca05598b2188";
|
|
sha256 = "8b2b22cd0dc766d4ecc3fc9f9ad21412b033ff02b6a3047a768da82773bb6bfe";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"snipmate" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "snipmate-2015-02-04";
|
|
src = fetchgit {
|
|
url = "git://github.com/garbas/vim-snipmate";
|
|
rev = "22e3bb0133ed6e2acbc630a49f0a780487f56fd5";
|
|
sha256 = "7b4a730b557d4f0d117e8ad7529ff38f81d29986db6d4418c0ea39ff3c827e65";
|
|
};
|
|
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 = "95665edd31b4840728f6e1492ccf143d52079b2c1ce11407cf9936b03c9df23c";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"surround" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "surround-2015-02-08";
|
|
src = fetchgit {
|
|
url = "git://github.com/tpope/vim-surround";
|
|
rev = "fd75eb2cb2ffe85a457445cb152d5a6c7acda140";
|
|
sha256 = "3322993b1c0aec299525d5d8120433b72a03e70cee573289639ed5675e33974e";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"table-mode" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "table-mode-2015-01-11";
|
|
src = fetchgit {
|
|
url = "git://github.com/dhruvasagar/vim-table-mode";
|
|
rev = "3096a26db437bfb6e66798bfbf45e7549ba767d9";
|
|
sha256 = "610bbcad80fc153e2d68745ad767205d906c08055e884b93b98a0e2aa947d4dd";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"tlib" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "tlib-2015-01-15";
|
|
src = fetchgit {
|
|
url = "git://github.com/tomtom/tlib_vim";
|
|
rev = "9e629767e5a91ede057d07f8754326e68c92a692";
|
|
sha256 = "2c3c039175494fb3b2f5002194f3ee9f50dafc65c80bc5f3a07d9911aea52208";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"undotree" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "undotree-2015-01-29";
|
|
src = fetchgit {
|
|
url = "git://github.com/mbbill/undotree";
|
|
rev = "42000e2a7140843030f517de9d4923dd5fa40458";
|
|
sha256 = "8a340bce79409b1f6c88c8c9310fd9d9eb97bba23c5208f66715e5a008cb0cba";
|
|
};
|
|
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 = "4a6d9e25b69cf458980e0b2acabc5b87e1e0d763f357fbeaee1e859b2f3d9069";
|
|
};
|
|
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 = "ff9c7ce533dd2d0c2cabcd507f22c27b8507b03f58dfe30158304dca77133730";
|
|
};
|
|
dependencies = ["vim-addon-signs"];
|
|
|
|
};
|
|
"vim-addon-background-cmd" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-background-cmd-2015-01-05";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-background-cmd";
|
|
rev = "e99076519139b959edce0581b0f31207a5ec7c64";
|
|
sha256 = "54872b6f636994a3057c0fcda3e6e540684205cf2d08a41778bcfbdd6d0a57a2";
|
|
};
|
|
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 = "f0ce6072dd607c7fe3a337903d49d19bf90bc59d302977cc30dd26696cd723a9";
|
|
};
|
|
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 = "177738cbe3ab6083517e211c8aa8e6235beafb518a7e8b87922a675dbbed5b5b";
|
|
};
|
|
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 = "59a7abe3d6be8e579737c7c614a5cb148df14cc1dcea3d711acb115190cb31b3";
|
|
};
|
|
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 = "a91752a43042086448246777cd9dc2fa7f5f8f54ef052148acfa51c05f58281e";
|
|
};
|
|
dependencies = ["tlib"];
|
|
|
|
};
|
|
"vim-addon-local-vimrc" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-local-vimrc-2014-02-14";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-local-vimrc";
|
|
rev = "7689b55ee86dd6046923fd28ceab49da3881abfe";
|
|
sha256 = "b496281c8b0dd4c7aada20789a6a3a6b6d1d2741d19b0a690d09bf121d0f40d8";
|
|
};
|
|
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 = "6cff7636e5939931a1f152fe635319028fb92d88483789d737e89ef2d73ea16f";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"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 = "b00f609e5e043171b2be729bbc7b5094678fdfe7de97a1b34bf9855bec7d75f8";
|
|
};
|
|
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 = "7ba038830b6f6c60a93d3dc8e60755a3728ddc8414e9d8c0089d5b530eb848e7";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"vim-addon-nix" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-addon-nix-2014-11-05";
|
|
src = fetchgit {
|
|
url = "git://github.com/MarcWeber/vim-addon-nix";
|
|
rev = "7b0a376bb1797fef8da2dc14e768f318bcb671e8";
|
|
sha256 = "db4c397ae56f81f600e67549c76a879901d6084246b34751526a9e39f3f720c1";
|
|
};
|
|
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 = "ec0b80acd31bac66bb1fc72bfc960f2a89b156d6ecd0a620c143bde8fbfe1e21";
|
|
};
|
|
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 = "d127d274bd37c1ad4deae4e988403f987cb11c0a8d7f7d729bf1fcf282a33add";
|
|
};
|
|
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 = "27035d6d8eace02be4a5585100372a709d7a582ea66b56a1c282ee5041e1fc70";
|
|
};
|
|
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 = "0d5cb4e6fa829a39cf8ba537a463aece768619ce8bcbb8693a4c348fa64541ca";
|
|
};
|
|
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 = "530f1d69e8ebae201c07b38e50ebfadbae60649d4a73977c124cd3f1378d659f";
|
|
};
|
|
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 = "c258c941e75f09474d27ebeb859438565e3e237873fa71d1abfc75f8dfaee963";
|
|
};
|
|
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 = "ebf61896e9b32eeeb0553124cc0011aee7d779307a32771c3ecb7181951d479a";
|
|
};
|
|
dependencies = ["WebAPI" "vim-addon-mw-utils" "vim-addon-signs" "vim-addon-async"];
|
|
|
|
};
|
|
"vim-airline" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-airline-2015-02-13";
|
|
src = fetchgit {
|
|
url = "git://github.com/bling/vim-airline";
|
|
rev = "ca925efdbfe88b03597efc7caee4ee8762a2cfe0";
|
|
sha256 = "47def66ab083fb847c8ee40e0a23bf6d69cdcc7919c869089542381c8319c972";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"vim-coffee-script" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-coffee-script-2014-10-10";
|
|
src = fetchgit {
|
|
url = "git://github.com/kchmck/vim-coffee-script";
|
|
rev = "827e4a38b07479433b619091469a7495a392df8a";
|
|
sha256 = "ca93ff77aab2c5f0b855afa60b26fce355f74684e8de27e76d2d22eda3e75904";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"vim-easy-align" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-easy-align-2014-12-14";
|
|
src = fetchgit {
|
|
url = "git://github.com/junegunn/vim-easy-align";
|
|
rev = "c62d124be614de65922b15d468c4049d1eee9353";
|
|
sha256 = "733dbf6c4d1a29957451d64c7cf431f877e5abefcee19017742b4d5e8d60165b";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"vim-gitgutter" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-gitgutter-2015-02-11";
|
|
src = fetchgit {
|
|
url = "git://github.com/airblade/vim-gitgutter";
|
|
rev = "061258e04476c0f9f653a969e640bf03b3659594";
|
|
sha256 = "535643c8e958d7c020ef0c39aadb5c6a7f3bad8895213bc0f6774c12e2627ac3";
|
|
};
|
|
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 = "631786c89ebcd630788f2c7201b3f2503e0106eef4e3d9d808e91946f7778c08";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"vim-latex-live-preview" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-latex-live-preview-2013-11-25";
|
|
src = fetchgit {
|
|
url = "git://github.com/xuhdev/vim-latex-live-preview";
|
|
rev = "18625ceca4de5984f3df50cdd0202fc13eb9e37c";
|
|
sha256 = "c129e9360f0c3c616a26ea74cfde03c70cfae16f9e1eeb89cfbcfc16beb3b5b9";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"vim-signature" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-signature-2015-01-12";
|
|
src = fetchgit {
|
|
url = "git://github.com/kshenoy/vim-signature";
|
|
rev = "b4ac4f38528313456f98b1a50722cfc9a06bfc45";
|
|
sha256 = "606e2b1dc19c0e9c7301e0c9a6ff07cd7cefe057f3a5ac17536735dcb1a03e06";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"vim-snippets" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim-snippets-2015-02-17";
|
|
src = fetchgit {
|
|
url = "git://github.com/honza/vim-snippets";
|
|
rev = "93b4de1299916de0d93d70629f86ff0fa9735061";
|
|
sha256 = "82a909f180ea11959d20f838a2716ff188bdec9f5ea2406ccd4fa27388462cf6";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"vim2hs" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vim2hs-2014-04-16";
|
|
src = fetchgit {
|
|
url = "git://github.com/dag/vim2hs";
|
|
rev = "f2afd55704bfe0a2d66e6b270d247e9b8a7b1664";
|
|
sha256 = "1c8120a530a29047a8034dc7b381a53f41b0d827d90ea496736b97b65a6b01f5";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"vundle" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "vundle-2014-07-18";
|
|
src = fetchgit {
|
|
url = "git://github.com/gmarik/vundle";
|
|
rev = "0b28e334e65b6628b0a61c412fcb45204a2f2bab";
|
|
sha256 = "95b9b4b8bb76fa60f2a26ef48c3801385051bcb5b2f591d548dc45284b3ab79e";
|
|
};
|
|
dependencies = [];
|
|
|
|
};
|
|
"wombat256" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
|
name = "wombat256";
|
|
src = fetchurl {
|
|
url = "http://www.vim.org/scripts/download_script.php?src_id=13400";
|
|
name = "wombat256mod.vim";
|
|
sha256 = "1san0jg9sfm6chhnr1wc5nhczlp11ibca0v7i4gf68h9ick9mysn";
|
|
};
|
|
buildInputs = [ unzip ];
|
|
dependencies = [];
|
|
meta = {
|
|
url = "http://www.vim.org/scripts/script.php?script_id=2465";
|
|
};
|
|
|
|
|
|
};
|
|
|
|
}
|