e842ffbb33
Contains a security fix for kibana: CVE-2018-3818. https://www.elastic.co/guide/en/elasticsearch/reference/current/release-notes-6.1.2.html https://www.elastic.co/guide/en/logstash/6.1/logstash-6-1-2.html https://www.elastic.co/guide/en/kibana/6.1/release-notes-6.1.2.html https://www.elastic.co/guide/en/beats/libbeat/6.1/release-notes-6.1.2.html
41 lines
1.3 KiB
Nix
41 lines
1.3 KiB
Nix
{ stdenv, makeWrapper, fetchurl, elk6Version, nodejs, coreutils, which }:
|
|
|
|
with stdenv.lib;
|
|
let
|
|
inherit (builtins) elemAt;
|
|
info = splitString "-" stdenv.system;
|
|
arch = elemAt info 0;
|
|
plat = elemAt info 1;
|
|
shas = {
|
|
"x86_64-linux" = "0kgsafjn8wzrmiklfc8jg0h3cx25lhlkby8yz35wgpx4wbk3vfjx";
|
|
"x86_64-darwin" = "0i2kq9vyjv151kk7h3dl3hjrqqgxsg0qqxdqwjwlz9ja5axzlxhd";
|
|
};
|
|
in stdenv.mkDerivation rec {
|
|
name = "kibana-${version}";
|
|
version = elk6Version;
|
|
|
|
src = fetchurl {
|
|
url = "https://artifacts.elastic.co/downloads/kibana/${name}-${plat}-${arch}.tar.gz";
|
|
sha256 = shas."${stdenv.system}" or (throw "Unknown architecture");
|
|
};
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/libexec/kibana $out/bin
|
|
mv * $out/libexec/kibana/
|
|
rm -r $out/libexec/kibana/node
|
|
makeWrapper $out/libexec/kibana/bin/kibana $out/bin/kibana \
|
|
--prefix PATH : "${stdenv.lib.makeBinPath [ nodejs coreutils which ]}"
|
|
sed -i 's@NODE=.*@NODE=${nodejs}/bin/node@' $out/libexec/kibana/bin/kibana
|
|
'';
|
|
|
|
meta = {
|
|
description = "Visualize logs and time-stamped data";
|
|
homepage = http://www.elasticsearch.org/overview/kibana;
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ offline rickynils basvandijk ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|