2019-07-22 05:02:47 -07:00
|
|
|
{ bundlerApp, lib, bundlerUpdateScript }:
|
2014-11-17 19:31:56 -08:00
|
|
|
|
2019-05-03 05:24:13 -07:00
|
|
|
bundlerApp {
|
2016-10-14 08:56:42 -07:00
|
|
|
pname = "riemann-dash";
|
2016-10-02 15:41:14 -07:00
|
|
|
gemdir = ./.;
|
2019-05-03 05:24:13 -07:00
|
|
|
exes = [ "riemann-dash" ];
|
2016-06-15 17:47:54 -07:00
|
|
|
|
2019-07-22 05:02:47 -07:00
|
|
|
passthru.updateScript = bundlerUpdateScript "riemann-dash";
|
|
|
|
|
2016-06-15 17:47:54 -07:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A javascript, websockets-powered dashboard for Riemann";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/riemann/riemann-dash";
|
2016-06-15 17:47:54 -07:00
|
|
|
license = licenses.mit;
|
2019-07-22 05:02:47 -07:00
|
|
|
maintainers = with maintainers; [ manveru nicknovitski ];
|
2016-06-15 17:47:54 -07:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2015-01-21 17:46:50 -08:00
|
|
|
}
|