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

bundlerEnv {
  name = "fluentd-0.12.6";

  inherit ruby;
  gemfile = ./Gemfile;
  lockfile = ./Gemfile.lock;
  gemset = ./gemset.nix;

  buildInputs = [ curl ];

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