1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/misc/fluentd/default.nix

21 lines
430 B
Nix
Raw Normal View History

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