core/pkgs/by-name/ab/abseil-cpp/packages.nix
2024-05-13 22:24:10 +01:00

42 lines
1.5 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ ... }:
res: pkgs: super:
with pkgs; {
abseil-cpp_202103 = callPackage ./202103.nix {
# If abseil-cpp doesnt 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_202206 = callPackage ./202206.nix {
# If abseil-cpp doesnt 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_202301 = callPackage ./202301.nix {
# If abseil-cpp doesnt 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_202308 = callPackage ./202308.nix {
# If abseil-cpp doesnt 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_202401 = callPackage ./202401.nix {
# If abseil-cpp doesnt 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_202401;
}