vimPlugins.command-t: 2017-06-23 -> 2017-09-29

This commit is contained in:
Joerg Thalheim 2017-11-06 11:13:56 +00:00
parent 8c4dc462af
commit db06695dd7
2 changed files with 10 additions and 12 deletions

View File

@ -3,7 +3,7 @@
, which, fetchgit, llvmPackages , which, fetchgit, llvmPackages
, xkb_switch, rustracerd, fzf , xkb_switch, rustracerd, fzf
, python3, boost, icu , python3, boost, icu
, ycmd , ycmd, makeWrapper, rake
, pythonPackages, python3Packages , pythonPackages, python3Packages
, Cocoa ? null, git , Cocoa ? null, git
}: }:
@ -1903,18 +1903,17 @@ rec {
}; };
command-t = buildVimPluginFrom2Nix { # created by nix#NixDerivation command-t = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "command-t-2017-06-23"; name = "command-t-2017-09-29";
src = fetchgit { src = fetchgit {
url = "https://github.com/wincent/command-t"; url = "https://github.com/wincent/command-t";
rev = "29f2606a9665058a98b56f2d8062ba614a3f246e"; rev = "c5882de56f0ca3ce8e891c434f192519aca5c7bb";
sha256 = "0q6kqjy88w1478k2q6vqyyid69whd72746i0cd33xnslgykwm2hn"; sha256 = "0dbghh7fwy49zyjick7840dkbybqchjw2sg9c6p0kmp5w3j46b92";
}; };
dependencies = []; dependencies = [];
buildInputs = [ perl ruby git ]; buildInputs = [ ruby rake ];
buildPhase = '' buildPhase = ''
pushd ruby/command-t rake make
gem build ./command-t.gemspec rm ruby/command-t/ext/command-t/*.o
popd
''; '';
}; };

View File

@ -1,6 +1,5 @@
buildInputs = [ perl ruby git ]; buildInputs = [ ruby rake ];
buildPhase = '' buildPhase = ''
pushd ruby/command-t rake make
gem build ./command-t.gemspec rm ruby/command-t/ext/command-t/*.o
popd
''; '';