apple_sdk: remove cf-private alias

This commit is contained in:
Connor Baker 2023-05-01 11:45:15 -04:00
parent b00a5321bb
commit b2eb5c816f
4 changed files with 4 additions and 7 deletions

View File

@ -1,6 +1,5 @@
{ lib, stdenv
, fetchFromGitHub
, unstableGitUpdater
, cmake
, callPackage
@ -9,7 +8,7 @@
, xorg
# Darwin deps
, cf-private
, CoreFoundation
, Cocoa
, AudioToolbox
, OpenGL
@ -31,7 +30,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ];
buildInputs = if stdenv.isDarwin
then [
cf-private
CoreFoundation
Cocoa
AudioToolbox
OpenGL

View File

@ -15523,9 +15523,8 @@ with pkgs;
lizardfs = callPackage ../tools/filesystems/lizardfs { };
lobster = callPackage ../development/compilers/lobster {
inherit (darwin) cf-private;
inherit (darwin.apple_sdk.frameworks)
Cocoa AudioToolbox OpenGL Foundation ForceFeedback;
CoreFoundation Cocoa AudioToolbox OpenGL Foundation ForceFeedback;
};
lld = llvmPackages.lld;

View File

@ -108,7 +108,7 @@ impure-cmds // appleSourcePackages // chooseLibs // {
stdenv = if stdenv.isDarwin then stdenv else pkgs.libcxxStdenv;
};
# TODO: remove alias.
# TODO(@connorbaker): See https://github.com/NixOS/nixpkgs/issues/229389.
cf-private = self.apple_sdk.frameworks.CoreFoundation;
DarwinTools = callPackage ../os-specific/darwin/DarwinTools { };

View File

@ -217,7 +217,6 @@ let
perlPackages = { };
darwin = packagePlatforms pkgs.darwin // {
cf-private = {};
xcode = {};
};
} ));