summary refs log tree commit diff
path: root/pkgs/misc/vim-plugins
diff options
context:
space:
mode:
authorJoerg Thalheim <joerg@thalheim.io>2017-11-06 11:13:56 +0000
committerJoerg Thalheim <joerg@thalheim.io>2017-11-06 11:33:01 +0000
commitdb06695dd7c73c1a5cabc45b19f07791dd7350aa (patch)
tree68fbc8096f3a6d6d06fa11e2f155cb0919f18776 /pkgs/misc/vim-plugins
parent8c4dc462af8c54132eed73bf5e8f50126154fc25 (diff)
downloadnixlib-db06695dd7c73c1a5cabc45b19f07791dd7350aa.tar
nixlib-db06695dd7c73c1a5cabc45b19f07791dd7350aa.tar.gz
nixlib-db06695dd7c73c1a5cabc45b19f07791dd7350aa.tar.bz2
nixlib-db06695dd7c73c1a5cabc45b19f07791dd7350aa.tar.lz
nixlib-db06695dd7c73c1a5cabc45b19f07791dd7350aa.tar.xz
nixlib-db06695dd7c73c1a5cabc45b19f07791dd7350aa.tar.zst
nixlib-db06695dd7c73c1a5cabc45b19f07791dd7350aa.zip
vimPlugins.command-t: 2017-06-23 -> 2017-09-29
Diffstat (limited to 'pkgs/misc/vim-plugins')
-rw-r--r--pkgs/misc/vim-plugins/default.nix15
-rw-r--r--pkgs/misc/vim-plugins/vim2nix/additional-nix-code/command-t7
2 files changed, 10 insertions, 12 deletions
diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix
index e821ce123f13..5d4adaaad9e9 100644
--- a/pkgs/misc/vim-plugins/default.nix
+++ b/pkgs/misc/vim-plugins/default.nix
@@ -3,7 +3,7 @@
 , which, fetchgit, llvmPackages
 , xkb_switch, rustracerd, fzf
 , python3, boost, icu
-, ycmd
+, ycmd, makeWrapper, rake
 , pythonPackages, python3Packages
 , Cocoa ? null, git
 }:
@@ -1903,18 +1903,17 @@ rec {
   };
 
   command-t = buildVimPluginFrom2Nix { # created by nix#NixDerivation
-    name = "command-t-2017-06-23";
+    name = "command-t-2017-09-29";
     src = fetchgit {
       url = "https://github.com/wincent/command-t";
-      rev = "29f2606a9665058a98b56f2d8062ba614a3f246e";
-      sha256 = "0q6kqjy88w1478k2q6vqyyid69whd72746i0cd33xnslgykwm2hn";
+      rev = "c5882de56f0ca3ce8e891c434f192519aca5c7bb";
+      sha256 = "0dbghh7fwy49zyjick7840dkbybqchjw2sg9c6p0kmp5w3j46b92";
     };
     dependencies = [];
-    buildInputs = [ perl ruby git ];
+    buildInputs = [ ruby rake ];
     buildPhase = ''
-      pushd ruby/command-t
-      gem build ./command-t.gemspec
-      popd
+      rake make
+      rm ruby/command-t/ext/command-t/*.o
     '';
   };
 
diff --git a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/command-t b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/command-t
index 5c96e11de7a7..f850425cba77 100644
--- a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/command-t
+++ b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/command-t
@@ -1,6 +1,5 @@
-    buildInputs = [ perl ruby git ];
+    buildInputs = [ ruby rake ];
     buildPhase = ''
-      pushd ruby/command-t
-      gem build ./command-t.gemspec
-      popd
+      rake make
+      rm ruby/command-t/ext/command-t/*.o
     '';