about summary refs log tree commit diff
path: root/pkgs/tools/misc/fluentd/default.nix
blob: 18752acb98d462a6fc7779be556a61f3241cf2b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, bundlerEnv, ruby, bundlerUpdateScript, nixosTests }:

bundlerEnv {
  inherit ruby;

  pname = "fluentd";
  gemdir = ./.;

  passthru.updateScript = bundlerUpdateScript "fluentd";
  passthru.tests.fluentd = nixosTests.fluentd;

  meta = with lib; {
    description = "A data collector";
    homepage    = "https://www.fluentd.org/";
    license     = licenses.asl20;
    maintainers = with maintainers; [ offline nicknovitski ];
    platforms   = platforms.unix;
  };
}