vimPlugins.ctrlp: fixed upstream url

This commit is contained in:
Théophane Hufschmitt 2015-10-03 10:38:55 +02:00
parent e206ea5b0c
commit 2496ecc327
2 changed files with 25 additions and 12 deletions

View File

@ -47,6 +47,7 @@ rec {
colorsamplerpack = Colour_Sampler_Pack; colorsamplerpack = Colour_Sampler_Pack;
command_T = command-t; # backwards compat, added 2014-10-18 command_T = command-t; # backwards compat, added 2014-10-18
css_color_5056 = vim-css-color; css_color_5056 = vim-css-color;
ctrlp = ctrlp-vim;
easy-align = vim-easy-align; easy-align = vim-easy-align;
easymotion = vim-easymotion; easymotion = vim-easymotion;
eighties = vim-eighties; eighties = vim-eighties;
@ -54,6 +55,7 @@ rec {
gist-vim = Gist; gist-vim = Gist;
gitgutter = vim-gitgutter; gitgutter = vim-gitgutter;
gundo = gundo-vim; gundo = gundo-vim;
Gundo = gundo-vim; # backwards compat, added 2015-10-03
haskellConceal = haskellconceal; # backwards compat, added 2014-10-18 haskellConceal = haskellconceal; # backwards compat, added 2014-10-18
haskellconceal = vim-haskellconceal; haskellconceal = vim-haskellconceal;
hier = vim-hier; hier = vim-hier;
@ -96,6 +98,17 @@ rec {
}; };
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 CheckAttach = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "CheckAttach-2015-06-22"; name = "CheckAttach-2015-06-22";
src = fetchgit { src = fetchgit {
@ -266,17 +279,6 @@ rec {
}; };
ctrlp = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "ctrlp-2013-07-29";
src = fetchgit {
url = "git://github.com/kien/ctrlp.vim";
rev = "b5d3fe66a58a13d2ff8b6391f4387608496a030f";
sha256 = "41f7884973770552395b96f8693da70999dc815462d4018c560d3ff6be462e76";
};
dependencies = [];
};
ctrlp-py-matcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation ctrlp-py-matcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "ctrlp-py-matcher-2015-07-18"; name = "ctrlp-py-matcher-2015-07-18";
src = fetchgit { src = fetchgit {
@ -376,6 +378,17 @@ rec {
}; };
ctrlp-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "ctrlp-vim-2015-09-15";
src = fetchgit {
url = "git://github.com/ctrlpvim/ctrlp.vim";
rev = "58247bdf8550879e183c13860eefa03983959e4a";
sha256 = "1d4cf293a1e48564a491e00077794e23f5360827a72c2618fd3e99ee153ea6a8";
};
dependencies = [];
};
vim-jade = buildVimPluginFrom2Nix { # created by nix#NixDerivation vim-jade = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-jade-2015-07-06"; name = "vim-jade-2015-07-06";
src = fetchgit { src = fetchgit {

View File

@ -16,7 +16,6 @@
"WebAPI" "WebAPI"
"YankRing" "YankRing"
"commentary" "commentary"
"ctrlp"
"ctrlp-py-matcher" "ctrlp-py-matcher"
"ctrlp-z" "ctrlp-z"
"extradite" "extradite"
@ -27,6 +26,7 @@
"github:mkasa/lushtags" "github:mkasa/lushtags"
"github:bitc/vim-hdevtools" "github:bitc/vim-hdevtools"
"github:christoomey/vim-tmux-navigator" "github:christoomey/vim-tmux-navigator"
"github:ctrlpvim/ctrlp.vim"
"github:eagletmt/neco-ghc" "github:eagletmt/neco-ghc"
"github:esneider/YUNOcommit.vim" "github:esneider/YUNOcommit.vim"
"github:fatih/vim-go" "github:fatih/vim-go"