summary refs log tree commit diff
path: root/pkgs/servers/monitoring/facette
diff options
context:
space:
mode:
authorFrancesco Gazzetta <francygazz@gmail.com>2018-04-30 16:32:14 +0000
committerFrancesco Gazzetta <francygazz@gmail.com>2018-05-02 14:10:43 +0000
commit42170173402e3d73494a5b3ea92b3ce46d1b1a93 (patch)
treef4d225c29b025c4038f4ea2813b87434608e7fa2 /pkgs/servers/monitoring/facette
parent4aa5504aa3b543d2212385ee82dc58a54ad1f9d4 (diff)
downloadnixlib-42170173402e3d73494a5b3ea92b3ce46d1b1a93.tar
nixlib-42170173402e3d73494a5b3ea92b3ce46d1b1a93.tar.gz
nixlib-42170173402e3d73494a5b3ea92b3ce46d1b1a93.tar.bz2
nixlib-42170173402e3d73494a5b3ea92b3ce46d1b1a93.tar.lz
nixlib-42170173402e3d73494a5b3ea92b3ce46d1b1a93.tar.xz
nixlib-42170173402e3d73494a5b3ea92b3ce46d1b1a93.tar.zst
nixlib-42170173402e3d73494a5b3ea92b3ce46d1b1a93.zip
facette: init at 0.4.0
Diffstat (limited to 'pkgs/servers/monitoring/facette')
-rw-r--r--pkgs/servers/monitoring/facette/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/servers/monitoring/facette/default.nix b/pkgs/servers/monitoring/facette/default.nix
new file mode 100644
index 000000000000..3858720bed5c
--- /dev/null
+++ b/pkgs/servers/monitoring/facette/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchFromGitHub
+, go, pkgconfig, nodejs, nodePackages, pandoc, rrdtool }:
+
+stdenv.mkDerivation rec {
+  name = "facette-${version}";
+  version = "0.4.0";
+  src = fetchFromGitHub {
+    owner = "facette";
+    repo = "facette";
+    rev = "${version}";
+    sha256 = "1m7krq439qlf7b4l4bfjw0xfvjgj67w59mh8rf7c398rky04p257";
+  };
+  nativeBuildInputs = [ go pkgconfig nodejs nodePackages.npm pandoc ];
+  buildInputs = [ rrdtool ];
+  preBuild = ''
+    export HOME="$NIX_BUILD_ROOT" # npm needs a writable home
+  '';
+  makeFlags = [ "PREFIX=$(out)" ];
+
+  meta = with stdenv.lib; {
+    description = "Time series data visualization software";
+    longDescription = ''
+      Facette is a web application to display time series data from various
+      sources — such as collectd, Graphite, InfluxDB or KairosDB — on graphs.
+    '';
+    homepage = https://facette.io/;
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ fgaz ];
+  };
+}