summary refs log blame commit diff
path: root/pkgs/tools/misc/fluentd/default.nix
blob: 18752acb98d462a6fc7779be556a61f3241cf2b8 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                           

            
               


                    
 
                                                        
                                              
 
                    
                                     
                                             
                                 
                                                             


                                 
{ lib, bundlerEnv, ruby, bundlerUpdateScript, nixosTests }:

bundlerEnv {
  inherit ruby;

  pname = "fluentd";
  gemdir = ./.;

  passthru.updateScript = bundlerUpdateScript "fluentd";
  passthru.tests.fluentd = nixosTests.fluentd;

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