2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, flex, bison }:
|
2019-05-03 19:46:53 +01:00
|
|
|
|
2019-10-29 09:20:00 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-05-03 19:46:53 +01:00
|
|
|
pname = "fluent-bit";
|
2021-03-08 10:35:36 +00:00
|
|
|
version = "1.7.2";
|
2019-05-03 19:46:53 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fluent";
|
|
|
|
repo = "fluent-bit";
|
2019-10-29 09:20:00 +00:00
|
|
|
rev = "v${version}";
|
2021-03-08 10:35:36 +00:00
|
|
|
sha256 = "sha256-5R26NvhSYesMk/8i9+5H3pZTgbdbnuQ1rLlCa/gWJGc=";
|
2019-05-03 19:46:53 +01:00
|
|
|
};
|
|
|
|
|
2019-10-29 09:20:00 +00:00
|
|
|
nativeBuildInputs = [ cmake flex bison ];
|
2019-05-03 19:46:53 +01:00
|
|
|
|
2021-02-22 04:20:00 +00:00
|
|
|
patches = lib.optionals stdenv.isDarwin [ ./fix-luajit-darwin.patch ];
|
|
|
|
|
|
|
|
# _FORTIFY_SOURCE requires compiling with optimization (-O)
|
|
|
|
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isGNU "-O";
|
2020-11-02 23:52:05 +00:00
|
|
|
|
2019-05-03 19:46:53 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/CMakeLists.txt \
|
|
|
|
--replace /lib/systemd $out/lib/systemd
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-05-03 19:46:53 +01:00
|
|
|
description = "Log forwarder and processor, part of Fluentd ecosystem";
|
|
|
|
homepage = "https://fluentbit.io";
|
|
|
|
maintainers = with maintainers; [
|
|
|
|
samrose
|
|
|
|
];
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|