2015-03-18 12:33:52 -07:00
|
|
|
{ stdenv, lib, bundlerEnv, ruby, curl }:
|
|
|
|
|
|
|
|
bundlerEnv {
|
|
|
|
inherit ruby;
|
2016-10-03 02:09:47 -07:00
|
|
|
|
|
|
|
pname = "fluentd";
|
|
|
|
gemdir = ./.;
|
2015-03-18 12:33:52 -07:00
|
|
|
|
|
|
|
meta = with lib; {
|
2015-04-28 01:54:58 -07:00
|
|
|
description = "A data collector";
|
2017-08-02 14:50:51 -07:00
|
|
|
homepage = https://www.fluentd.org/;
|
2015-05-28 10:20:29 -07:00
|
|
|
license = licenses.asl20;
|
2015-03-18 12:33:52 -07:00
|
|
|
maintainers = with maintainers; [ offline ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|