about summary refs log tree commit diff
path: root/pkgs/tools/misc/fluentd/default.nix
blob: 25e083b6bf575a006fa55779147feac4725f5e7d (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    = http://www.fluentd.org/;
    license     = licenses.asl20;
    maintainers = with maintainers; [ offline ];
    platforms   = platforms.unix;
  };
}