mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
09e0cc7cc7
Homepage link "http://.../" is a permanent redirect to "https://.../" and should be updated https://repology.org/repository/nix_stable/problems
17 lines
337 B
Nix
17 lines
337 B
Nix
{ stdenv, lib, bundlerEnv, ruby, curl }:
|
|
|
|
bundlerEnv {
|
|
inherit ruby;
|
|
|
|
pname = "fluentd";
|
|
gemdir = ./.;
|
|
|
|
meta = with lib; {
|
|
description = "A data collector";
|
|
homepage = https://www.fluentd.org/;
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ offline ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|