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 = '' installPhase = ''
mkdir -p $out mkdir -p $out
cp -r {Gemfile*,vendor,lib} $out cp -r {Gemfile*,vendor,lib,bin} $out
cp bin/logstash $out/logstash mv $out/bin/plugin $out/bin/logstash-plugin
cp bin/plugin $out/logstash-plugin
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {