mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
21 lines
443 B
Nix
21 lines
443 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|