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

15 lines
320 B
Nix
Raw Normal View History

2016-10-02 22:41:14 +00:00
{ bundlerEnv, lib, ruby }:
2014-11-18 03:31:56 +00:00
2016-10-02 22:41:14 +00:00
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;
};
}