nixpkgs/pkgs/servers/monitoring/riemann-dash/default.nix
2019-05-03 14:24:13 +02:00

16 lines
376 B
Nix

{ bundlerApp, lib }:
bundlerApp {
pname = "riemann-dash";
gemdir = ./.;
exes = [ "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 ];
platforms = platforms.unix;
};
}