3
0
Fork 0
forked from mirrors/nixpkgs

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

This commit is contained in:
Franz Pletz 2022-11-11 01:15:33 +01:00 committed by GitHub
commit ae7666c7f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,13 +2,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "fluent-bit"; pname = "fluent-bit";
version = "2.0.3"; version = "2.0.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "fluent"; owner = "fluent";
repo = "fluent-bit"; repo = "fluent-bit";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-8P28xaFyaU0GrIrO+D+Rp9H4xgOymHtbAbd2mI79vSI="; sha256 = "sha256-Fn6+hAVGgbsqR6wQc2tGcslyxlX5XIqc1PYLyhjTfh0=";
}; };
nativeBuildInputs = [ cmake flex bison ]; nativeBuildInputs = [ cmake flex bison ];
@ -39,6 +39,6 @@ stdenv.mkDerivation rec {
homepage = "https://fluentbit.io"; homepage = "https://fluentbit.io";
maintainers = with maintainers; [ samrose fpletz ]; maintainers = with maintainers; [ samrose fpletz ];
license = licenses.asl20; license = licenses.asl20;
platforms = platforms.unix; platforms = platforms.linux;
}; };
} }