Files
nixpkgs/pkgs/tools/misc/fluentd/default.nix
mimadrid 09e0cc7cc7 Update homepage attributes: http -> https
Homepage link "http://.../" is a permanent redirect to "https://.../" and should be updated
https://repology.org/repository/nix_stable/problems
2017-08-03 11:56:15 +02:00

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;
};
}