diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2016-11-30 11:57:09 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2016-11-30 15:34:44 +0300 |
commit | 35a4dd1f84f78cc604c48b121d400e832f50d523 (patch) | |
tree | 2e91fc55087e3b3d1959c8f1c569da6c32d4291f | |
parent | bbdb44d2890c0c0d4c8ec2671edaae860856dc54 (diff) | |
download | nixsap-35a4dd1f84f78cc604c48b121d400e832f50d523.tar.gz |
Added kibana 5.0.2 (repacked tarball)
-rw-r--r-- | modules/pkgs/kibana5/default.nix | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/modules/pkgs/kibana5/default.nix b/modules/pkgs/kibana5/default.nix new file mode 100644 index 0000000..519dafd --- /dev/null +++ b/modules/pkgs/kibana5/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "kibana-${version}.tar.xz"; + version = "5.0.2"; + + # JS is a realm of sorrow. node2nix, npm2nix failed to package kibana + # mostly because of npm and its registry being dumb beasts. + # Instead, we are loading prebuild package. It's arch-dependent + # only for bundled Node.JS binary (sic!). We remove it, and use our own. + # This also makes it easier to patch the whole thing when needed. + # Even worse: kibana can't run from a read-only directory. + # So we will keep it in a tarball and extract before running. + # Essentially it's like Java's WAR archives. + src = fetchurl { + url = "https://artifacts.elastic.co/downloads/kibana/kibana-${version}-linux-x86_64.tar.gz"; + sha1 = "c68eb5d3397a0afb7132630f120b1d53724a2fd9"; + }; + + phases = [ "unpackPhase" "installPhase" ]; + + installPhase = '' + rm -r node bin + tar cJf $out --transform 's,^,kibana-${version}/,' * + ''; + + meta = { + description = "Visualize logs and time-stamped data"; + homepage = http://www.elasticsearch.org/overview/kibana; + license = stdenv.lib.licenses.asl20; + }; +} |