Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
64 lines
1.8 KiB
Nix
64 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
cmake,
|
|
gtest,
|
|
static ? stdenv.hostPlatform.isStatic,
|
|
cxxStandard ? null,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "abseil-cpp";
|
|
version = "20240722.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "abseil";
|
|
repo = "abseil-cpp";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-ir4hG2VIPv3se7JfWqCM/siLqFEFkmhMW/IGCocy6Pc=";
|
|
};
|
|
|
|
patches = [
|
|
# Don't match -Wnon-virtual-dtor in the "flags are needed to suppress
|
|
# Needed to cleanly apply the #1738 fix below.
|
|
# https://github.com/abseil/abseil-cpp/issues/1737
|
|
(fetchpatch {
|
|
url = "https://github.com/abseil/abseil-cpp/commit/9cb5e5d15c142e5cc43a2c1db87c8e4e5b6d38a5.patch";
|
|
hash = "sha256-PTNmNJMk42Omwek0ackl4PjxifDP/+GaUitS60l+VB0=";
|
|
})
|
|
|
|
# Fix shell option group handling in pkgconfig files
|
|
# https://github.com/abseil/abseil-cpp/pull/1738
|
|
(fetchpatch {
|
|
url = "https://github.com/abseil/abseil-cpp/commit/bd0c9c58cac4463d96b574de3097422bb78215a8.patch";
|
|
hash = "sha256-fB9pvkyNBXoDKLrVaNwliqrWEPTa2Y6OJMe2xgl5IBc=";
|
|
})
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DABSL_BUILD_TEST_HELPERS=ON"
|
|
"-DABSL_USE_EXTERNAL_GOOGLETEST=ON"
|
|
"-DBUILD_SHARED_LIBS=${if static then "OFF" else "ON"}"
|
|
]
|
|
++ lib.optionals (cxxStandard != null) [
|
|
"-DCMAKE_CXX_STANDARD=${cxxStandard}"
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ gtest ];
|
|
|
|
meta = {
|
|
description = "Open-source collection of C++ code designed to augment the C++ standard library";
|
|
homepage = "https://abseil.io/";
|
|
changelog = "https://github.com/abseil/abseil-cpp/releases/tag/${finalAttrs.version}";
|
|
license = lib.licenses.asl20;
|
|
platforms = lib.platforms.all;
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
};
|
|
})
|