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