1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 23:20:55 +00:00
nixpkgs/pkgs/servers/monitoring/riemann-dash/default.nix
2020-04-10 17:54:53 +01:00

18 lines
475 B
Nix

{ bundlerApp, lib, bundlerUpdateScript }:
bundlerApp {
pname = "riemann-dash";
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;
};
}