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