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

View File

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