Merge pull request #11452 from makefu/fix-logstash

logstash: fix bin path
This commit is contained in:
Pascal Wittmann 2015-12-04 16:35:32 +01:00
commit 6c2d06ca07

View File

@ -16,9 +16,8 @@ stdenv.mkDerivation rec {
installPhase = ''
mkdir -p $out
cp -r {Gemfile*,vendor,lib} $out
cp bin/logstash $out/logstash
cp bin/plugin $out/logstash-plugin
cp -r {Gemfile*,vendor,lib,bin} $out
mv $out/bin/plugin $out/bin/logstash-plugin
'';
meta = with stdenv.lib; {