nixpkgs/pkgs/tools/misc/logstash/6.x.nix

56 lines
1.4 KiB
Nix
Raw Normal View History

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