Add fluentd package and module

This commit is contained in:
Jaka Hudoklin
2015-03-18 21:18:47 +01:00
parent 2bc6af3efc
commit fca0aa7077
7 changed files with 286 additions and 0 deletions
+20
View File
@@ -0,0 +1,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;
};
}