205 lines
4.8 KiB
Nix
205 lines
4.8 KiB
Nix
{
|
||
lib,
|
||
stdenv,
|
||
|
||
fetchFromGitHub,
|
||
|
||
cmake,
|
||
ninja,
|
||
pkg-config,
|
||
removeReferencesTo,
|
||
|
||
double-conversion,
|
||
fast-float,
|
||
gflags,
|
||
glog,
|
||
libevent,
|
||
zlib,
|
||
openssl,
|
||
xz,
|
||
lz4,
|
||
zstd,
|
||
libiberty,
|
||
libunwind,
|
||
apple-sdk_11,
|
||
darwinMinVersionHook,
|
||
|
||
boost,
|
||
fmt_11,
|
||
jemalloc,
|
||
|
||
gtest,
|
||
|
||
follyMobile ? false,
|
||
|
||
nix-update-script,
|
||
|
||
# for passthru.tests
|
||
python3,
|
||
watchman,
|
||
}:
|
||
|
||
stdenv.mkDerivation (finalAttrs: {
|
||
pname = "folly";
|
||
version = "2024.11.18.00";
|
||
|
||
# split outputs to reduce downstream closure sizes
|
||
outputs = [
|
||
"out"
|
||
"dev"
|
||
];
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "facebook";
|
||
repo = "folly";
|
||
rev = "refs/tags/v${finalAttrs.version}";
|
||
hash = "sha256-CX4YzNs64yeq/nDDaYfD5y8GKrxBueW4y275edPoS0c=";
|
||
};
|
||
|
||
nativeBuildInputs = [
|
||
cmake
|
||
ninja
|
||
pkg-config
|
||
removeReferencesTo
|
||
];
|
||
|
||
# See CMake/folly-deps.cmake in the Folly source tree.
|
||
buildInputs =
|
||
[
|
||
boost
|
||
double-conversion
|
||
fast-float
|
||
gflags
|
||
glog
|
||
libevent
|
||
zlib
|
||
openssl
|
||
xz
|
||
lz4
|
||
zstd
|
||
libiberty
|
||
libunwind
|
||
]
|
||
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||
apple-sdk_11
|
||
(darwinMinVersionHook "11.0")
|
||
];
|
||
|
||
propagatedBuildInputs =
|
||
[
|
||
# `folly-config.cmake` pulls these in.
|
||
boost
|
||
fmt_11
|
||
]
|
||
++ lib.optionals stdenv.hostPlatform.isLinux [
|
||
# jemalloc headers are required in include/folly/portability/Malloc.h
|
||
jemalloc
|
||
];
|
||
|
||
checkInputs = [
|
||
gtest
|
||
];
|
||
|
||
cmakeFlags = [
|
||
(lib.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic))
|
||
|
||
(lib.cmakeBool "BUILD_TESTS" finalAttrs.finalPackage.doCheck)
|
||
|
||
# Folly uses these instead of the standard CMake variables for some reason.
|
||
(lib.cmakeFeature "INCLUDE_INSTALL_DIR" "${placeholder "dev"}/include")
|
||
(lib.cmakeFeature "LIB_INSTALL_DIR" "${placeholder "out"}/lib")
|
||
(lib.cmakeFeature "CMAKE_INSTALL_DIR" "${placeholder "dev"}/lib/cmake/folly")
|
||
(lib.cmakeFeature "CMAKE_INSTALL_PREFIX" (placeholder "dev"))
|
||
];
|
||
|
||
env.NIX_CFLAGS_COMPILE = lib.concatStringsSep " " (
|
||
[
|
||
"-DFOLLY_MOBILE=${if follyMobile then "1" else "0"}"
|
||
]
|
||
++ lib.optionals (stdenv.cc.isGNU && stdenv.hostPlatform.isAarch64) [
|
||
# /build/source/folly/algorithm/simd/Movemask.h:156:32: error: cannot convert '__Uint64x1_t' to '__Uint8x8_t'
|
||
"-flax-vector-conversions"
|
||
]
|
||
);
|
||
|
||
doCheck = true;
|
||
|
||
# https://github.com/NixOS/nixpkgs/issues/144170
|
||
postPatch = ''
|
||
substituteInPlace CMake/libfolly.pc.in \
|
||
--replace-fail \
|
||
${lib.escapeShellArg "\${exec_prefix}/@LIB_INSTALL_DIR@"} \
|
||
'@CMAKE_INSTALL_FULL_LIBDIR@' \
|
||
--replace-fail \
|
||
${lib.escapeShellArg "\${prefix}/@CMAKE_INSTALL_INCLUDEDIR@"} \
|
||
'@CMAKE_INSTALL_FULL_INCLUDEDIR@'
|
||
'';
|
||
|
||
# TODO: Figure out why `GTEST_FILTER` doesn’t work to skip these.
|
||
checkPhase = ''
|
||
runHook preCheck
|
||
|
||
ctest -j $NIX_BUILD_CORES --output-on-failure --exclude-regex ${
|
||
lib.escapeShellArg (
|
||
lib.concatMapStringsSep "|" (test: "^${lib.escapeRegex test}$") (
|
||
[
|
||
"concurrency_concurrent_hash_map_test.*/ConcurrentHashMapTest/*.StressTestReclamation"
|
||
"io_async_ssl_session_test.SSLSessionTest.BasicTest"
|
||
"io_async_ssl_session_test.SSLSessionTest.NullSessionResumptionTest"
|
||
"singleton_thread_local_test.SingletonThreadLocalDeathTest.Overload"
|
||
]
|
||
++ lib.optionals stdenv.hostPlatform.isLinux [
|
||
"concurrency_cache_locality_test.CacheLocality.BenchmarkSysfs"
|
||
"concurrency_cache_locality_test.CacheLocality.LinuxActual"
|
||
"futures_future_test.Future.NoThrow"
|
||
"futures_retrying_test.RetryingTest.largeRetries"
|
||
]
|
||
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||
"buffered_atomic_test.BufferedAtomic.singleThreadUnguardedAccess"
|
||
]
|
||
)
|
||
)
|
||
}
|
||
|
||
runHook postCheck
|
||
'';
|
||
|
||
postFixup = ''
|
||
# Sanitize header paths to avoid runtime dependencies leaking in
|
||
# through `__FILE__`.
|
||
(
|
||
shopt -s globstar
|
||
for header in "$dev/include"/**/*.h; do
|
||
sed -i "1i#line 1 \"$header\"" "$header"
|
||
remove-references-to -t "$dev" "$header"
|
||
done
|
||
)
|
||
'';
|
||
|
||
passthru = {
|
||
inherit boost;
|
||
fmt = fmt_11;
|
||
|
||
updateScript = nix-update-script { };
|
||
|
||
tests = {
|
||
inherit watchman;
|
||
inherit (python3.pkgs) django pywatchman;
|
||
};
|
||
};
|
||
|
||
meta = {
|
||
description = "Open-source C++ library developed and used at Facebook";
|
||
homepage = "https://github.com/facebook/folly";
|
||
license = lib.licenses.asl20;
|
||
# 32bit is not supported: https://github.com/facebook/folly/issues/103
|
||
platforms = lib.platforms.unix;
|
||
badPlatforms = [ lib.systems.inspect.patterns.is32bit ];
|
||
maintainers = with lib.maintainers; [
|
||
abbradar
|
||
pierreis
|
||
emily
|
||
techknowlogick
|
||
];
|
||
};
|
||
})
|