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

bundlerEnv {
  inherit ruby;

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

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