{ lib , stdenv , fetchFromGitHub , cmake , static ? stdenv.hostPlatform.isStatic , cxxStandard ? null }: stdenv.mkDerivation (finalAttrs: { pname = "abseil-cpp"; version = "20230125.3"; src = fetchFromGitHub { owner = "abseil"; repo = "abseil-cpp"; rev = "refs/tags/${finalAttrs.version}"; hash = "sha256-PLoI7ix+reUqkZ947kWzls8lujYqWXk9A9a55UcfahI="; }; cmakeFlags = [ "-DBUILD_SHARED_LIBS=${if static then "OFF" else "ON"}" ] ++ lib.optionals (cxxStandard != null) [ "-DCMAKE_CXX_STANDARD=${cxxStandard}" ]; nativeBuildInputs = [ cmake ]; 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 ]; }; })