158e1cfdd0
And don't use square brackets on such lines.
21 lines
430 B
Nix
21 lines
430 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 = "A data collector";
|
|
homepage = http://www.fluentd.org/;
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ offline ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|