nixpkgs/pkgs/servers/monitoring/riemann-dash/default.nix
2016-10-14 16:56:42 +01:00

15 lines
320 B
Nix

{ 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;
};
}