contacts: remove cf-private

This commit is contained in:
Daiderd Jordan
2019-07-03 22:20:11 +02:00
parent f401da6af8
commit 6172dd89c8
2 changed files with 2 additions and 8 deletions
+2 -7
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
-1
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;
};