Merge pull request #9348 from offlinehacker/logstash/update/1.5.3

logstash: Update to 1.5.3
This commit is contained in:
Arseniy Seroka 2015-08-20 16:03:17 +03:00
commit 61d86a087b

View file

@ -1,31 +1,27 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "1.4.2";
version = "1.5.3";
name = "logstash-${version}";
src = fetchurl {
url = "https://download.elasticsearch.org/logstash/logstash/logstash-${version}.tar.gz";
sha256 = "0sc0bwyf96fzs5h3d7ii65v9vvpfbm7w67vk1im9djnlz0d1ggnm";
sha256 = "1an476k4q2shdxvhcx4fzbrcpk6isjrrvzlb6ivxfqg5fih3cg7b";
};
dontBuild = true;
dontPatchELF = true;
dontStrip = true;
dontBuild = true;
dontPatchELF = true;
dontStrip = true;
dontPatchShebangs = true;
installPhase = ''
mkdir -p $out/bin
mkdir -p $out/vendor
mkdir -p $out/lib
mkdir -p $out/locales
mkdir -p $out/patterns
cp -a bin $out
cp -a vendor $out
cp -a lib $out
cp -a locales $out
cp -a patterns $out
patchShebangs $out/bin
cp Gemfile* $out
'';
meta = {