nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, bundlerEnv, ruby, bundlerUpdateScript, nixosTests }:
2
3bundlerEnv {
4 inherit ruby;
5
6 pname = "fluentd";
7 gemdir = ./.;
8
9 passthru.updateScript = bundlerUpdateScript "fluentd";
10 passthru.tests.fluentd = nixosTests.fluentd;
11
12 meta = with lib; {
13 description = "A data collector";
14 homepage = "https://www.fluentd.org/";
15 license = licenses.asl20;
16 maintainers = with maintainers; [ offline nicknovitski ];
17 platforms = platforms.unix;
18 };
19}