2019-07-22 05:02:47 -07:00
|
|
|
{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
|
2015-03-18 12:33:52 -07:00
|
|
|
|
|
|
|
bundlerEnv {
|
|
|
|
inherit ruby;
|
2016-10-03 02:09:47 -07:00
|
|
|
|
|
|
|
pname = "fluentd";
|
|
|
|
gemdir = ./.;
|
2015-03-18 12:33:52 -07:00
|
|
|
|
2019-07-22 05:02:47 -07:00
|
|
|
passthru.updateScript = bundlerUpdateScript "fluentd";
|
|
|
|
|
2015-03-18 12:33:52 -07:00
|
|
|
meta = with lib; {
|
2015-04-28 01:54:58 -07:00
|
|
|
description = "A data collector";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.fluentd.org/";
|
2015-05-28 10:20:29 -07:00
|
|
|
license = licenses.asl20;
|
2019-07-22 05:02:47 -07:00
|
|
|
maintainers = with maintainers; [ offline nicknovitski ];
|
2015-03-18 12:33:52 -07:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|