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