1{
2 config,
3 elk7Version,
4 enableUnfree ? true,
5 lib,
6 stdenv,
7 fetchurl,
8 makeWrapper,
9 nixosTests,
10 jre,
11}:
12
13let
14 info = lib.splitString "-" stdenv.hostPlatform.system;
15 arch = lib.elemAt info 0;
16 plat = lib.elemAt info 1;
17 hashes =
18 if enableUnfree then
19 {
20 x86_64-linux = "sha512-9JzopnY43Osoy4/0G9gxJYlbCl1a9Qy2pL4GL1uyjJ3uSNoOskEBhhsqLp9BhtJXOaquuRDgbJnXhbBrlE0rKg==";
21 x86_64-darwin = "sha512-ZcdKWFrIQUmGtxoWbLc2F7g85quXfRqy62DyVPR/9zBtMTgFH0eG4Cj40ELpW7nYXZqglmAUTF/0mZZYUg2Ciw==";
22 aarch64-linux = "sha512-V2Nt/lup4ofgoMqpAH3OHF8Fp0PvC1M8nl6sCKmTf+ZXQYHNjAJkJwGJwHeQQ0L/348JHyCkeWL43dS7Jr6ZJQ==";
23 }
24 else
25 {
26 x86_64-linux = "sha512-L11ZUdXC8VDiSEVDBMous2OaMlAFgvkQ+eDbmbA9r/sDIXY8W7dx3jgPNXoorDtatTemwy8aXw1XJGaVmj4T3Q==";
27 x86_64-darwin = "sha512-az5ujFtwcuNNGuITDeGRu1FB2bb8/hIUmGMvm0Xcfvs0GZPnCZVY6ScsiHZYjT8X+qBYkn/httT3MYozrPOy4Q==";
28 aarch64-linux = "sha512-iVft0kZYhvFJ1NKCfdePhRxDljPTwV+3G7wV94iykYISgLTVoehzDTMdxUyfK/mmQhu3hmmHbVpw1jXjTrS7ng==";
29 };
30 this = stdenv.mkDerivation rec {
31 version = elk7Version;
32 pname = "logstash${lib.optionalString (!enableUnfree) "-oss"}";
33
34 src = fetchurl {
35 url = "https://artifacts.elastic.co/downloads/logstash/${pname}-${version}-${plat}-${arch}.tar.gz";
36 hash = hashes.${stdenv.hostPlatform.system} or (throw "Unknown architecture");
37 };
38
39 dontBuild = true;
40 dontPatchELF = true;
41 dontStrip = true;
42 dontPatchShebangs = true;
43
44 nativeBuildInputs = [
45 makeWrapper
46 ];
47
48 buildInputs = [
49 jre
50 ];
51
52 installPhase = ''
53 runHook preInstall
54 mkdir -p $out
55 cp -r {Gemfile*,modules,vendor,lib,bin,config,data,logstash-core,logstash-core-plugin-api} $out
56
57 patchShebangs $out/bin/logstash
58 patchShebangs $out/bin/logstash-plugin
59
60 wrapProgram $out/bin/logstash \
61 --set JAVA_HOME "${jre}"
62
63 wrapProgram $out/bin/logstash-plugin \
64 --set JAVA_HOME "${jre}"
65 runHook postInstall
66 '';
67
68 meta = with lib; {
69 description = "Logstash is a data pipeline that helps you process logs and other event data from a variety of systems";
70 homepage = "https://www.elastic.co/products/logstash";
71 sourceProvenance = with sourceTypes; [
72 fromSource
73 binaryBytecode # source bundles dependencies as jars
74 binaryNativeCode # bundled jruby includes native code
75 ];
76 license = if enableUnfree then licenses.elastic20 else licenses.asl20;
77 platforms = platforms.unix;
78 maintainers = with maintainers; [
79 offline
80 basvandijk
81 ];
82 };
83 passthru.tests = lib.optionalAttrs (config.allowUnfree && enableUnfree) (
84 assert this.drvPath == nixosTests.elk.unfree.ELK-7.elkPackages.logstash.drvPath;
85 {
86 elk = nixosTests.elk.unfree.ELK-7;
87 }
88 );
89 };
90in
91this