2014-07-11 18:50:02 +02:00
|
|
|
{ stdenv, fetchurl }:
|
2012-07-11 13:23:14 +02:00
|
|
|
|
2014-07-11 18:50:02 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2015-08-19 23:09:03 +02:00
|
|
|
version = "1.5.3";
|
2014-07-11 18:50:02 +02:00
|
|
|
name = "logstash-${version}";
|
2012-07-11 13:23:14 +02:00
|
|
|
|
2014-07-11 18:50:02 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.elasticsearch.org/logstash/logstash/logstash-${version}.tar.gz";
|
2015-08-19 23:09:03 +02:00
|
|
|
sha256 = "1an476k4q2shdxvhcx4fzbrcpk6isjrrvzlb6ivxfqg5fih3cg7b";
|
2014-07-11 18:50:02 +02:00
|
|
|
};
|
2012-07-11 13:23:14 +02:00
|
|
|
|
2015-08-19 23:09:03 +02:00
|
|
|
dontBuild = true;
|
|
|
|
dontPatchELF = true;
|
|
|
|
dontStrip = true;
|
2014-07-14 18:54:20 +02:00
|
|
|
dontPatchShebangs = true;
|
2012-07-11 13:23:14 +02:00
|
|
|
|
2014-07-11 18:50:02 +02:00
|
|
|
installPhase = ''
|
2015-09-06 14:46:31 +02:00
|
|
|
mkdir -p $out
|
2015-12-04 14:21:58 +01:00
|
|
|
cp -r {Gemfile*,vendor,lib,bin} $out
|
|
|
|
mv $out/bin/plugin $out/bin/logstash-plugin
|
2014-07-11 18:50:02 +02:00
|
|
|
'';
|
|
|
|
|
2015-09-06 14:46:31 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Logstash is a data pipeline that helps you process logs and other event data from a variety of systems.";
|
|
|
|
homepage = https://www.elastic.co/products/logstash;
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.wjlroe maintainers.offline ];
|
2014-07-11 18:50:02 +02:00
|
|
|
};
|
2012-07-11 13:23:14 +02:00
|
|
|
}
|