Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
492 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
bundlerEnv,
ruby,
bundlerUpdateScript,
nixosTests,
}:
bundlerEnv {
inherit ruby;
pname = "fluentd";
gemdir = ./.;
passthru.updateScript = bundlerUpdateScript "fluentd";
passthru.tests.fluentd = nixosTests.fluentd;
meta = with lib; {
description = "Data collector";
homepage = "https://www.fluentd.org/";
license = licenses.asl20;
maintainers = with maintainers; [
offline
nicknovitski
];
platforms = platforms.unix;
};
}