vimPlugins.command-t: fix ruby build

This commit is contained in:
Jörg Thalheim 2017-06-18 12:56:45 +01:00
parent abc374f127
commit 3477f56027
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
2 changed files with 4 additions and 6 deletions

View File

@ -5,7 +5,7 @@
, python3, boost, icu , python3, boost, icu
, ycmd , ycmd
, pythonPackages, python3Packages , pythonPackages, python3Packages
, Cocoa ? null , Cocoa ? null, git
}: }:
let let
@ -1775,11 +1775,10 @@ rec {
sha256 = "15wil973sqfgvix9li15qk49kv9l3rn8zqis2cl71k6xh1xvd9ff"; sha256 = "15wil973sqfgvix9li15qk49kv9l3rn8zqis2cl71k6xh1xvd9ff";
}; };
dependencies = []; dependencies = [];
buildInputs = [ perl ruby ]; buildInputs = [ perl ruby git ];
buildPhase = '' buildPhase = ''
pushd ruby/command-t pushd ruby/command-t
ruby extconf.rb gem build ./command-t.gemspec
make
popd popd
''; '';
}; };

View File

@ -1,7 +1,6 @@
buildInputs = [ perl ruby ]; buildInputs = [ perl ruby ];
buildPhase = '' buildPhase = ''
pushd ruby/command-t pushd ruby/command-t
ruby extconf.rb gem build command-t.gemspec
make
popd popd
''; '';