fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 lib,
3 bundlerEnv,
4 ruby,
5 bundlerUpdateScript,
6 nixosTests,
7}:
8
9bundlerEnv {
10 inherit ruby;
11
12 pname = "fluentd";
13 gemdir = ./.;
14
15 passthru.updateScript = bundlerUpdateScript "fluentd";
16 passthru.tests.fluentd = nixosTests.fluentd;
17
18 meta = with lib; {
19 description = "Data collector";
20 homepage = "https://www.fluentd.org/";
21 license = licenses.asl20;
22 maintainers = with maintainers; [
23 offline
24 nicknovitski
25 ];
26 platforms = platforms.unix;
27 };
28}