summary refs log tree commit diff
path: root/pkgs/servers/monitoring/riemann-dash/default.nix
blob: c2d197e6b45adfc36e89b219c3a42415cc70f3b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ bundlerEnv, lib, ruby }:

bundlerEnv {
  inherit ruby;
  pName = "riemann-dash";
  gemdir = ./.;

  meta = with lib; {
    description = "A javascript, websockets-powered dashboard for Riemann";
    homepage = https://github.com/riemann/riemann-dash;
    license = licenses.mit;
    platforms = platforms.unix;
  };
}