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