2023-07-15 17:15:38 +00:00
|
|
|
|
{ lib
|
|
|
|
|
, stdenv
|
|
|
|
|
, fetchFromGitHub
|
|
|
|
|
, cmake
|
2023-08-22 20:05:09 +00:00
|
|
|
|
, gtest
|
2023-07-15 17:15:38 +00:00
|
|
|
|
, static ? stdenv.hostPlatform.isStatic
|
|
|
|
|
, cxxStandard ? null
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
|
|
|
pname = "abseil-cpp";
|
2024-02-29 20:09:43 +00:00
|
|
|
|
version = "20230125.4";
|
2023-07-15 17:15:38 +00:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "abseil";
|
|
|
|
|
repo = "abseil-cpp";
|
|
|
|
|
rev = "refs/tags/${finalAttrs.version}";
|
2024-02-29 20:09:43 +00:00
|
|
|
|
hash = "sha256-7C/QIXYRyUyNVVE0tqmv8b5g/uWc58iBI5jzdtddQ+U=";
|
2023-07-15 17:15:38 +00:00
|
|
|
|
};
|
|
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
|
patches = lib.optionals stdenv.isDarwin [
|
|
|
|
|
# Don’t propagate the path to CoreFoundation. Otherwise, it’s impossible to build packages
|
|
|
|
|
# that require a different SDK other than the default one.
|
|
|
|
|
./cmake-core-foundation.patch
|
|
|
|
|
];
|
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
|
cmakeFlags = [
|
2023-08-22 20:05:09 +00:00
|
|
|
|
"-DABSL_BUILD_TEST_HELPERS=ON"
|
|
|
|
|
"-DABSL_USE_EXTERNAL_GOOGLETEST=ON"
|
2023-07-15 17:15:38 +00:00
|
|
|
|
"-DBUILD_SHARED_LIBS=${if static then "OFF" else "ON"}"
|
|
|
|
|
] ++ lib.optionals (cxxStandard != null) [
|
|
|
|
|
"-DCMAKE_CXX_STANDARD=${cxxStandard}"
|
|
|
|
|
];
|
|
|
|
|
|
2023-08-22 20:05:09 +00:00
|
|
|
|
strictDeps = true;
|
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
2023-08-22 20:05:09 +00:00
|
|
|
|
buildInputs = [ gtest ];
|
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
|
meta = with lib; {
|
|
|
|
|
description = "An open-source collection of C++ code designed to augment the C++ standard library";
|
|
|
|
|
homepage = "https://abseil.io/";
|
|
|
|
|
license = licenses.asl20;
|
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
maintainers = [ maintainers.andersk ];
|
|
|
|
|
};
|
|
|
|
|
})
|