nixpkgs/pkgs/development/tools/misc/kibana/default.nix

29 lines
698 B
Nix
Raw Normal View History

2014-10-14 19:05:23 +02:00
{ stdenv, fetchurl, conf ? null }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "kibana-${version}";
2014-10-14 19:05:23 +02:00
version = "3.1.1";
src = fetchurl {
2014-10-14 19:05:23 +02:00
url = "https://download.elasticsearch.org/kibana/kibana/${name}.tar.gz";
sha256 = "195x6zq9x16nlh2akvn6z0kp8qnba4vq90yrysiafgv8dmw34p5b";
};
phases = ["unpackPhase" "installPhase"];
2014-10-14 19:05:23 +02:00
installPhase = ''
2014-10-14 19:05:23 +02:00
mkdir -p $out
mv * $out/
${optionalString (conf != null) "cp ${conf} $out/config.js"}
'';
meta = {
description = "Visualize logs and time-stamped data";
homepage = http://www.elasticsearch.org/overview/kibana;
license = licenses.asl20;
2014-10-14 19:05:23 +02:00
maintainers = with maintainers; [ offline rickynils ];
};
}