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

54 lines
1.4 KiB
Nix
Raw Normal View History

{ elk7Version
2018-08-03 10:23:56 +00:00
, enableUnfree ? true
, stdenv
, fetchurl
, makeWrapper
, jre
}:
with stdenv.lib;
2014-07-11 16:50:02 +00:00
stdenv.mkDerivation rec {
version = elk7Version;
2018-08-03 10:23:56 +00:00
name = "logstash-${optionalString (!enableUnfree) "oss-"}${version}";
2014-07-11 16:50:02 +00:00
src = fetchurl {
2018-08-03 10:23:56 +00:00
url = "https://artifacts.elastic.co/downloads/logstash/${name}.tar.gz";
sha256 =
if enableUnfree
then "1dzk9amg23vbkj92wx529i1m2rrfjc0gzkbg6w3f6xaix5zch0vp"
else "07q2gbd3xidcklid5ny22zpb3q5v0z3k2kva6g214k7rnkr9bhyy";
2014-07-11 16:50:02 +00:00
};
2015-08-19 21:09:03 +00:00
dontBuild = true;
dontPatchELF = true;
dontStrip = true;
dontPatchShebangs = true;
buildInputs = [
makeWrapper jre
];
2016-10-01 21:11:30 +00:00
2014-07-11 16:50:02 +00:00
installPhase = ''
mkdir -p $out
2018-08-03 10:23:56 +00:00
cp -r {Gemfile*,modules,vendor,lib,bin,config,data,logstash-core,logstash-core-plugin-api} $out
2016-10-01 21:11:30 +00:00
2018-08-03 10:23:56 +00:00
patchShebangs $out/bin/logstash
patchShebangs $out/bin/logstash-plugin
2016-10-01 21:11:30 +00:00
2018-08-03 10:23:56 +00:00
wrapProgram $out/bin/logstash \
--set JAVA_HOME "${jre}"
wrapProgram $out/bin/logstash-plugin \
--set JAVA_HOME "${jre}"
2014-07-11 16:50:02 +00: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;
2018-08-03 10:23:56 +00:00
license = if enableUnfree then licenses.elastic else licenses.asl20;
platforms = platforms.unix;
2018-08-03 10:23:56 +00:00
maintainers = with maintainers; [ wjlroe offline basvandijk ];
2014-07-11 16:50:02 +00:00
};
}