about summary refs log tree commit diff
path: root/pkgs/misc/vim-plugins
diff options
context:
space:
mode:
authorCarl Sverre <accounts@carlsverre.com>2016-11-23 23:49:58 -0800
committerCarl Sverre <accounts@carlsverre.com>2016-11-23 23:53:32 -0800
commit1d45e5d6c71c2038b13bbeb5ab56297e3f047c64 (patch)
tree057f2a75bc0353950cc7b1787f8ef11d08bb7525 /pkgs/misc/vim-plugins
parentb69f568f4c3ebaf48a7f66b0f051d28157a61afb (diff)
downloadnixlib-1d45e5d6c71c2038b13bbeb5ab56297e3f047c64.tar
nixlib-1d45e5d6c71c2038b13bbeb5ab56297e3f047c64.tar.gz
nixlib-1d45e5d6c71c2038b13bbeb5ab56297e3f047c64.tar.bz2
nixlib-1d45e5d6c71c2038b13bbeb5ab56297e3f047c64.tar.lz
nixlib-1d45e5d6c71c2038b13bbeb5ab56297e3f047c64.tar.xz
nixlib-1d45e5d6c71c2038b13bbeb5ab56297e3f047c64.tar.zst
nixlib-1d45e5d6c71c2038b13bbeb5ab56297e3f047c64.zip
fix/ctrlp-cmatcher: add extra steps to additional-nix-code
Diffstat (limited to 'pkgs/misc/vim-plugins')
-rw-r--r--pkgs/misc/vim-plugins/default.nix4
-rw-r--r--pkgs/misc/vim-plugins/vim2nix/additional-nix-code/ctrlp-cmatcher5
2 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix
index 2852a2c1e341..aa558071be48 100644
--- a/pkgs/misc/vim-plugins/default.nix
+++ b/pkgs/misc/vim-plugins/default.nix
@@ -304,16 +304,14 @@ rec {
   };
 
   ctrlp-cmatcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation
-    name = "ctrlp-cmatcher-2016-09-22";
+    name = "ctrlp-cmatcher-2015-10-15";
     src = fetchgit {
       url = "git://github.com/JazzCore/ctrlp-cmatcher";
       rev = "6c36334f106b6fd981d23e724e9a618734cab43a";
       sha256 = "1573kd6xf3n8sxlz2j4zadai4rnc7k3s9c54648yfzickwn57d8q";
     };
     dependencies = [];
-
     buildInputs = [ python ];
-
     buildPhase = ''
       patchShebangs .
       ./install.sh
diff --git a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/ctrlp-cmatcher b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/ctrlp-cmatcher
new file mode 100644
index 000000000000..bd4a4fa989ba
--- /dev/null
+++ b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/ctrlp-cmatcher
@@ -0,0 +1,5 @@
+    buildInputs = [ python ];
+    buildPhase = ''
+      patchShebangs .
+      ./install.sh
+    '';