core/pkgs/by-name/ab/abseil-cpp/202401.nix

37 lines
997 B
Nix
Raw Normal View History

2024-05-13 21:24:10 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, gtest
, static ? stdenv.hostPlatform.isStatic, cxxStandard ? null }:
2024-05-02 00:46:19 +00:00
stdenv.mkDerivation (finalAttrs: {
pname = "abseil-cpp";
version = "20240116.2";
src = fetchFromGitHub {
owner = "abseil";
repo = "abseil-cpp";
rev = "refs/tags/${finalAttrs.version}";
hash = "sha256-eA2/dZpNOlex1O5PNa3XSZhpMB3AmaIoHzVDI9TD/cg=";
};
cmakeFlags = [
"-DABSL_BUILD_TEST_HELPERS=ON"
"-DABSL_USE_EXTERNAL_GOOGLETEST=ON"
"-DBUILD_SHARED_LIBS=${if static then "OFF" else "ON"}"
2024-05-13 21:24:10 +00:00
] ++ lib.optionals (cxxStandard != null)
[ "-DCMAKE_CXX_STANDARD=${cxxStandard}" ];
2024-05-02 00:46:19 +00:00
strictDeps = true;
nativeBuildInputs = [ cmake ];
buildInputs = [ gtest ];
meta = with lib; {
2024-05-13 21:24:10 +00:00
description =
"An open-source collection of C++ code designed to augment the C++ standard library";
2024-05-02 00:46:19 +00:00
homepage = "https://abseil.io/";
license = licenses.asl20;
platforms = platforms.all;
maintainers = [ maintainers.GaetanLepage ];
};
})