nixpkgs/pkgs/tools/misc/fluent-bit/default.nix

31 lines
724 B
Nix
Raw Normal View History

2019-10-29 09:20:00 +00:00
{ 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";
2020-08-25 22:43:23 +01:00
version = "1.5.4";
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}";
2020-08-25 22:43:23 +01:00
sha256 = "0w96f86i2jlzjk2plf8jbdw4q748khbhhjkbzfb8dkq2lhc9i80h";
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
postPatch = ''
substituteInPlace src/CMakeLists.txt \
--replace /lib/systemd $out/lib/systemd
'';
meta = with stdenv.lib; {
description = "Log forwarder and processor, part of Fluentd ecosystem";
homepage = "https://fluentbit.io";
maintainers = with maintainers; [
samrose
];
license = licenses.asl20;
platforms = platforms.unix;
};
}