contacts: remove cf-private

This commit is contained in:
Daiderd Jordan 2019-06-19 19:41:13 +02:00
parent f401da6af8
commit 6172dd89c8
No known key found for this signature in database
GPG key ID: D02435D05B810C96
2 changed files with 2 additions and 8 deletions

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, xcbuildHook, cf-private, Foundation, AddressBook }:
{ stdenv, fetchurl, xcbuildHook, Foundation, AddressBook }:
stdenv.mkDerivation rec {
version = "1.1a-3";
@ -10,12 +10,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ xcbuildHook ];
buildInputs = [
Foundation AddressBook
# Needed for OBJC_CLASS_$_NSArray symbols.
cf-private
];
buildInputs = [ Foundation AddressBook ];
installPhase = ''
mkdir -p $out/bin

View file

@ -1329,7 +1329,6 @@ in
codec2 = callPackage ../development/libraries/codec2 { };
contacts = callPackage ../tools/misc/contacts {
inherit (darwin) cf-private;
inherit (darwin.apple_sdk.frameworks) Foundation AddressBook;
xcbuildHook = xcbuild6Hook;
};