mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
ctrlp-cmatcher: init at 09-22-2016
Faster matcher for the ctrlp vim plugin.
This commit is contained in:
parent
2b0eace6cf
commit
71a94dfd93
2 changed files with 18 additions and 0 deletions
|
@ -299,6 +299,23 @@ rec {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ctrlp-cmatcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||||
|
name = "ctrlp-cmatcher-2016-09-22";
|
||||||
|
src = fetchgit {
|
||||||
|
url = "git://github.com/JazzCore/ctrlp-cmatcher";
|
||||||
|
rev = "6c36334f106b6fd981d23e724e9a618734cab43a";
|
||||||
|
sha256 = "1573kd6xf3n8sxlz2j4zadai4rnc7k3s9c54648yfzickwn57d8q";
|
||||||
|
};
|
||||||
|
dependencies = [];
|
||||||
|
|
||||||
|
buildInputs = [ python ];
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
patchShebangs .
|
||||||
|
./install.sh
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
ctrlp-z = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
ctrlp-z = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||||
name = "ctrlp-z-2015-10-17";
|
name = "ctrlp-z-2015-10-17";
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
"YankRing"
|
"YankRing"
|
||||||
"commentary"
|
"commentary"
|
||||||
"ctrlp-py-matcher"
|
"ctrlp-py-matcher"
|
||||||
|
"ctrlp-cmatcher"
|
||||||
"ctrlp-z"
|
"ctrlp-z"
|
||||||
"extradite"
|
"extradite"
|
||||||
"fugitive"
|
"fugitive"
|
||||||
|
|
Loading…
Reference in a new issue