nixpkgs/pkgs/tools/misc/fluentd/default.nix

21 lines
436 B
Nix
Raw Normal View History

2015-03-18 20:33:52 +01:00
{ 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; {
2015-04-28 10:54:58 +02:00
description = "A data collector";
2015-03-18 20:33:52 +01:00
homepage = http://www.fluentd.org/;
license = with licenses; asl20;
maintainers = with maintainers; [ offline ];
platforms = platforms.unix;
};
}