2018-08-03 11:23:56 +01:00
|
|
|
{ elk6Version
|
|
|
|
, enableUnfree ? true
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, makeWrapper
|
|
|
|
, jre
|
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2012-07-11 12:23:14 +01:00
|
|
|
|
2014-07-11 17:50:02 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-08-03 11:23:56 +01:00
|
|
|
version = elk6Version;
|
|
|
|
name = "logstash-${optionalString (!enableUnfree) "oss-"}${version}";
|
2012-07-11 12:23:14 +01:00
|
|
|
|
2014-07-11 17:50:02 +01:00
|
|
|
src = fetchurl {
|
2018-08-03 11:23:56 +01:00
|
|
|
url = "https://artifacts.elastic.co/downloads/logstash/${name}.tar.gz";
|
|
|
|
sha256 =
|
|
|
|
if enableUnfree
|
2018-11-29 16:10:15 +00:00
|
|
|
then "01mkb9fr63m3ilp4cbbjccid5m8yc7iqhnli12ynfabsf7302fdz"
|
|
|
|
else "0r60183yyywabinsv9pkd8sx0wq68h740xi3172fypjfdcqs0g9c";
|
2014-07-11 17:50:02 +01:00
|
|
|
};
|
2012-07-11 12:23:14 +01:00
|
|
|
|
2015-08-19 22:09:03 +01:00
|
|
|
dontBuild = true;
|
|
|
|
dontPatchELF = true;
|
|
|
|
dontStrip = true;
|
2014-07-14 17:54:20 +01:00
|
|
|
dontPatchShebangs = true;
|
2012-07-11 12:23:14 +01:00
|
|
|
|
2016-09-30 02:55:25 +01:00
|
|
|
buildInputs = [
|
|
|
|
makeWrapper jre
|
|
|
|
];
|
2016-10-01 22:11:30 +01:00
|
|
|
|
2014-07-11 17:50:02 +01:00
|
|
|
installPhase = ''
|
2015-09-06 13:46:31 +01:00
|
|
|
mkdir -p $out
|
2018-08-03 11:23:56 +01:00
|
|
|
cp -r {Gemfile*,modules,vendor,lib,bin,config,data,logstash-core,logstash-core-plugin-api} $out
|
2016-10-01 22:11:30 +01:00
|
|
|
|
2018-08-03 11:23:56 +01:00
|
|
|
patchShebangs $out/bin/logstash
|
|
|
|
patchShebangs $out/bin/logstash-plugin
|
2016-10-01 22:11:30 +01:00
|
|
|
|
2018-08-03 11:23:56 +01:00
|
|
|
wrapProgram $out/bin/logstash \
|
2016-09-30 02:55:25 +01:00
|
|
|
--set JAVA_HOME "${jre}"
|
2016-10-02 08:31:59 +01:00
|
|
|
|
|
|
|
wrapProgram $out/bin/logstash-plugin \
|
|
|
|
--set JAVA_HOME "${jre}"
|
2014-07-11 17:50:02 +01:00
|
|
|
'';
|
|
|
|
|
2015-09-06 13:46:31 +01:00
|
|
|
meta = with stdenv.lib; {
|
2016-02-27 17:24:00 +00:00
|
|
|
description = "Logstash is a data pipeline that helps you process logs and other event data from a variety of systems";
|
2015-09-06 13:46:31 +01:00
|
|
|
homepage = https://www.elastic.co/products/logstash;
|
2018-08-03 11:23:56 +01:00
|
|
|
license = if enableUnfree then licenses.elastic else licenses.asl20;
|
2015-09-06 13:46:31 +01:00
|
|
|
platforms = platforms.unix;
|
2018-08-03 11:23:56 +01:00
|
|
|
maintainers = with maintainers; [ wjlroe offline basvandijk ];
|
2014-07-11 17:50:02 +01:00
|
|
|
};
|
2012-07-11 12:23:14 +01:00
|
|
|
}
|