Unverified Commit 0d0cef62 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #246005 from r-ryantm/auto-update/fluent-bit

fluent-bit: 2.1.7 -> 2.1.8
parents a8d82103 f6438e19
Loading
Loading
Loading
Loading
+22 −12
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, cmake, flex, bison, systemd, postgresql, openssl, libyaml }:

stdenv.mkDerivation rec {
{ lib
, stdenv
, fetchFromGitHub
, cmake
, flex
, bison
, systemd
, postgresql
, openssl
, libyaml
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "fluent-bit";
  version = "2.1.7";
  version = "2.1.8";

  src = fetchFromGitHub {
    owner = "fluent";
    repo = "fluent-bit";
    rev = "v${version}";
    hash = "sha256-KQHrzfmYoDnWP4bBHXeHq47K6LqVcPuSLu7h2ka+U8A=";
    rev = "v${finalAttrs.version}";
    hash = "sha256-iWbWkKd0Rpg0EU3H//sAxth1v1S52yPwGn1AzeC9xkA=";
  };

  nativeBuildInputs = [ cmake flex bison ];
@@ -34,12 +44,12 @@ stdenv.mkDerivation rec {
      --replace /lib/systemd $out/lib/systemd
  '';

  meta = with lib; {
  meta = {
    changelog = "https://github.com/fluent/fluent-bit/releases/tag/v${finalAttrs.version}";
    description = "Log forwarder and processor, part of Fluentd ecosystem";
    homepage = "https://fluentbit.io";
    changelog = "https://github.com/fluent/fluent-bit/releases/tag/v${version}";
    maintainers = with maintainers; [ samrose fpletz ];
    license = licenses.asl20;
    platforms = platforms.linux;
    license = lib.licenses.asl20;
    maintainers = [ lib.maintainers.samrose lib.maintainers.fpletz ];
    platforms = lib.platforms.linux;
  };
}
})