nixpkgs/pkgs/servers/monitoring/riemann-dash/default.nix

16 lines
376 B
Nix
Raw Normal View History

{ bundlerApp, lib }:
2014-11-17 19:31:56 -08:00
bundlerApp {
2016-10-14 08:56:42 -07:00
pname = "riemann-dash";
2016-10-02 15:41:14 -07:00
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;
};
}