cctools: drop darwin.objc4 from build inputs

It’s not necessary with the new SDK.
This commit is contained in:
Randy Eckenrode
2024-10-10 16:23:07 -04:00
parent 29a87d6751
commit 9d376e2c53
+4 -8
View File
@@ -3,7 +3,6 @@
stdenv,
fetchFromGitHub,
buildPackages,
darwin,
ld64,
llvm,
memstreamHook,
@@ -127,13 +126,10 @@ stdenv.mkDerivation (finalAttrs: {
openssl
];
buildInputs =
[
ld64
llvm
]
++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.objc4 ]
++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [ memstreamHook ];
buildInputs = [
ld64
llvm
] ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [ memstreamHook ];
mesonBuildType = "release";