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

18 lines
475 B
Nix
Raw Normal View History

{ bundlerApp, lib, bundlerUpdateScript }:
2014-11-18 03:31:56 +00:00
bundlerApp {
2016-10-14 15:56:42 +00:00
pname = "riemann-dash";
2016-10-02 22:41:14 +00:00
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;
};
}