2015-03-18 19:33:52 +00:00
|
|
|
{ stdenv, lib, bundlerEnv, ruby, curl }:
|
|
|
|
|
|
|
|
bundlerEnv {
|
2016-06-10 00:22:48 +01:00
|
|
|
name = "fluentd-0.14.0";
|
2015-03-18 19:33:52 +00:00
|
|
|
|
|
|
|
inherit ruby;
|
|
|
|
gemfile = ./Gemfile;
|
|
|
|
lockfile = ./Gemfile.lock;
|
|
|
|
gemset = ./gemset.nix;
|
|
|
|
|
|
|
|
meta = with lib; {
|
2015-04-28 09:54:58 +01:00
|
|
|
description = "A data collector";
|
2015-03-18 19:33:52 +00:00
|
|
|
homepage = http://www.fluentd.org/;
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.asl20;
|
2015-03-18 19:33:52 +00:00
|
|
|
maintainers = with maintainers; [ offline ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|