mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-05 03:34:12 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
84 lines
1.9 KiB
Nix
84 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
flex,
|
|
bison,
|
|
systemd,
|
|
postgresql,
|
|
openssl,
|
|
libyaml,
|
|
darwin,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "fluent-bit";
|
|
version = "3.1.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fluent";
|
|
repo = "fluent-bit";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-SQltn4tbBGOFxascERG7J29vGz/jdq/4BWMH7P4BP64=";
|
|
};
|
|
|
|
# optional only to avoid linux rebuild
|
|
patches = lib.optionals stdenv.hostPlatform.isDarwin [ ./macos-11-sdk-compat.patch ];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
flex
|
|
bison
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
openssl
|
|
libyaml
|
|
postgresql
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [ systemd ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.apple_sdk_11_0.frameworks.IOKit
|
|
darwin.apple_sdk_11_0.frameworks.Foundation
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DFLB_RELEASE=ON"
|
|
"-DFLB_METRICS=ON"
|
|
"-DFLB_HTTP_SERVER=ON"
|
|
"-DFLB_OUT_PGSQL=ON"
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ "-DCMAKE_OSX_DEPLOYMENT_TARGET=10.13" ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString (
|
|
# Used by the embedded luajit, but is not predefined on older mac SDKs.
|
|
lib.optionals stdenv.hostPlatform.isDarwin [ "-DTARGET_OS_IPHONE=0" ]
|
|
# Assumes GNU version of strerror_r, and the posix version has an
|
|
# incompatible return type.
|
|
++ lib.optionals (!stdenv.hostPlatform.isGnu) [ "-Wno-int-conversion" ]
|
|
);
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/CMakeLists.txt \
|
|
--replace /lib/systemd $out/lib/systemd
|
|
'';
|
|
|
|
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";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [
|
|
samrose
|
|
fpletz
|
|
];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|