kibana: Update from 3.1.0 to 3.1.1
This commit is contained in:
parent
7dc624e347
commit
87bcb503aa
@ -1,29 +1,28 @@
|
|||||||
{ stdenv, fetchurl, unzip, conf ? null }:
|
{ stdenv, fetchurl, conf ? null }:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "kibana-${version}";
|
name = "kibana-${version}";
|
||||||
version = "3.1.0";
|
version = "3.1.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://download.elasticsearch.org/kibana/kibana/${name}.zip";
|
url = "https://download.elasticsearch.org/kibana/kibana/${name}.tar.gz";
|
||||||
sha256 = "05i97zi08rxwx951hgs92fbhk6cchpvdlikrfz07v1dpn787xz8j";
|
sha256 = "195x6zq9x16nlh2akvn6z0kp8qnba4vq90yrysiafgv8dmw34p5b";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ unzip ];
|
|
||||||
|
|
||||||
phases = ["unpackPhase" "installPhase"];
|
phases = ["unpackPhase" "installPhase"];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out && cp -R * $out
|
mkdir -p $out
|
||||||
${optionalString (conf!=null) ''cp ${conf} $out/config.js''}
|
mv * $out/
|
||||||
|
${optionalString (conf != null) "cp ${conf} $out/config.js"}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Visualize logs and time-stamped data";
|
description = "Visualize logs and time-stamped data";
|
||||||
homepage = http://www.elasticsearch.org/overview/kibana;
|
homepage = http://www.elasticsearch.org/overview/kibana;
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ offline rickynils ];
|
||||||
maintainers = [ maintainers.offline ];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user