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

54 lines
1.4 KiB
Nix
Raw Normal View History

{ elk7Version
2018-08-03 11:23:56 +01:00
, enableUnfree ? true
, stdenv
, fetchurl
, makeWrapper
, jre
}:
with stdenv.lib;
2014-07-11 17:50:02 +01:00
stdenv.mkDerivation rec {
version = elk7Version;
2018-08-03 11:23:56 +01:00
name = "logstash-${optionalString (!enableUnfree) "oss-"}${version}";
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
2019-05-09 10:37:48 +01:00
then "0ls7ia4ldyb7kslmjqhszb30bkammdm5nydc5y7r41zl1zjlhfgc"
else "1mpmfnc57vpjk8x3vibamz8lgq163msf20m1bail4hbwhwsmms9i";
2014-07-11 17:50:02 +01:00
};
2015-08-19 22:09:03 +01:00
dontBuild = true;
dontPatchELF = true;
dontStrip = true;
dontPatchShebangs = true;
buildInputs = [
makeWrapper jre
];
2016-10-01 22:11:30 +01:00
2014-07-11 17:50:02 +01:00
installPhase = ''
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 \
--set JAVA_HOME "${jre}"
wrapProgram $out/bin/logstash-plugin \
--set JAVA_HOME "${jre}"
2014-07-11 17:50:02 +01: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 11:23:56 +01:00
license = if enableUnfree then licenses.elastic else licenses.asl20;
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
};
}