Loading pkgs/development/libraries/abseil-cpp/202401.nix 0 → 100644 +42 −0 Original line number Diff line number Diff line { lib , stdenv , fetchFromGitHub , cmake , gtest , static ? stdenv.hostPlatform.isStatic , cxxStandard ? null }: stdenv.mkDerivation (finalAttrs: { pname = "abseil-cpp"; version = "20240116.0"; src = fetchFromGitHub { owner = "abseil"; repo = "abseil-cpp"; rev = "refs/tags/${finalAttrs.version}"; hash = "sha256-HtJh2oYGx87bNT6Ll3WLeYPPxH1f9JwVqCXGErykGnE="; }; 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 = 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.GaetanLepage ]; }; }) pkgs/top-level/all-packages.nix +6 −0 Original line number Diff line number Diff line Loading @@ -20451,6 +20451,12 @@ with pkgs; then overrideSDK stdenv { darwinMinVersion = "10.13"; } else stdenv; }; abseil-cpp_202401 = callPackage ../development/libraries/abseil-cpp/202401.nix { # If abseil-cpp doesn’t have a deployment target of 10.13+, arrow-cpp crashes in libgrpc.dylib. stdenv = if stdenv.isDarwin && stdenv.isx86_64 then overrideSDK stdenv { darwinMinVersion = "10.13"; } else stdenv; }; abseil-cpp = abseil-cpp_202301; accountsservice = callPackage ../development/libraries/accountsservice { }; Loading
pkgs/development/libraries/abseil-cpp/202401.nix 0 → 100644 +42 −0 Original line number Diff line number Diff line { lib , stdenv , fetchFromGitHub , cmake , gtest , static ? stdenv.hostPlatform.isStatic , cxxStandard ? null }: stdenv.mkDerivation (finalAttrs: { pname = "abseil-cpp"; version = "20240116.0"; src = fetchFromGitHub { owner = "abseil"; repo = "abseil-cpp"; rev = "refs/tags/${finalAttrs.version}"; hash = "sha256-HtJh2oYGx87bNT6Ll3WLeYPPxH1f9JwVqCXGErykGnE="; }; 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 = 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.GaetanLepage ]; }; })
pkgs/top-level/all-packages.nix +6 −0 Original line number Diff line number Diff line Loading @@ -20451,6 +20451,12 @@ with pkgs; then overrideSDK stdenv { darwinMinVersion = "10.13"; } else stdenv; }; abseil-cpp_202401 = callPackage ../development/libraries/abseil-cpp/202401.nix { # If abseil-cpp doesn’t have a deployment target of 10.13+, arrow-cpp crashes in libgrpc.dylib. stdenv = if stdenv.isDarwin && stdenv.isx86_64 then overrideSDK stdenv { darwinMinVersion = "10.13"; } else stdenv; }; abseil-cpp = abseil-cpp_202301; accountsservice = callPackage ../development/libraries/accountsservice { };