nixpkgs/pkgs/tools/misc/fluentd/default.nix
2016-06-10 01:35:39 +00:00

19 lines
403 B
Nix

{ stdenv, lib, bundlerEnv, ruby, curl }:
bundlerEnv {
name = "fluentd-0.14.0";
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
meta = with lib; {
description = "A data collector";
homepage = http://www.fluentd.org/;
license = licenses.asl20;
maintainers = with maintainers; [ offline ];
platforms = platforms.unix;
};
}