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

bundlerApp {
  pname = "riemann-dash";
  gemdir = ./.;
  exes = [ "riemann-dash" ];

  passthru.updateScript = bundlerUpdateScript "riemann-dash";

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