2021-02-05 17:12:51 +00:00
|
|
|
{ lib, appleDerivation, cpio, xnu, Libc, Libm, libdispatch, cctools, Libinfo
|
2020-04-24 23:36:52 +00:00
|
|
|
, dyld, Csu, architecture, libclosure, CarbonHeaders, ncurses, CommonCrypto
|
|
|
|
, copyfile, removefile, libresolv, Libnotify, libplatform, libpthread
|
2020-11-19 00:13:47 +00:00
|
|
|
, mDNSResponder, launchd, libutil, hfs, darling, darwin-stubs }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
appleDerivation {
|
|
|
|
dontBuild = true;
|
|
|
|
dontFixup = true;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cpio ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
export NIX_ENFORCE_PURITY=
|
|
|
|
|
|
|
|
mkdir -p $out/lib $out/include
|
|
|
|
|
|
|
|
# Set up our include directories
|
|
|
|
(cd ${xnu}/include && find . -name '*.h' -or -name '*.defs' | cpio -pdm $out/include)
|
|
|
|
cp ${xnu}/Library/Frameworks/Kernel.framework/Versions/A/Headers/Availability*.h $out/include
|
|
|
|
cp ${xnu}/Library/Frameworks/Kernel.framework/Versions/A/Headers/stdarg.h $out/include
|
|
|
|
|
|
|
|
for dep in ${Libc} ${Libm} ${Libinfo} ${dyld} ${architecture} \
|
|
|
|
${libclosure} ${CarbonHeaders} ${libdispatch} ${ncurses.dev} \
|
|
|
|
${CommonCrypto} ${copyfile} ${removefile} ${libresolv} \
|
|
|
|
${Libnotify} ${libplatform} ${mDNSResponder} ${launchd} \
|
|
|
|
${libutil} ${libpthread} ${hfs}; do
|
|
|
|
(cd $dep/include && find . -name '*.h' | cpio -pdm $out/include)
|
|
|
|
done
|
|
|
|
|
|
|
|
(cd ${cctools.dev}/include/mach-o && find . -name '*.h' | cpio -pdm $out/include/mach-o)
|
|
|
|
|
|
|
|
mkdir -p $out/include/os
|
|
|
|
|
|
|
|
cp ${darling.src}/src/libc/os/activity.h $out/include/os
|
|
|
|
cp ${darling.src}/src/libc/os/log.h $out/include/os
|
|
|
|
cp ${darling.src}/src/duct/include/os/trace.h $out/include/os
|
|
|
|
|
|
|
|
cat <<EOF > $out/include/os/availability.h
|
|
|
|
#ifndef __OS_AVAILABILITY__
|
|
|
|
#define __OS_AVAILABILITY__
|
|
|
|
#include <AvailabilityInternal.h>
|
|
|
|
|
|
|
|
#if defined(__has_feature) && defined(__has_attribute) && __has_attribute(availability)
|
|
|
|
#define API_AVAILABLE(...) __API_AVAILABLE_GET_MACRO(__VA_ARGS__, __API_AVAILABLE4, __API_AVAILABLE3, __API_AVAILABLE2, __API_AVAILABLE1)(__VA_ARGS__)
|
|
|
|
#define API_DEPRECATED(...) __API_DEPRECATED_MSG_GET_MACRO(__VA_ARGS__, __API_DEPRECATED_MSG5, __API_DEPRECATED_MSG4, __API_DEPRECATED_MSG3, __API_DEPRECATED_MSG2, __API_DEPRECATED_MSG1)(__VA_ARGS__)
|
|
|
|
#define API_DEPRECATED_WITH_REPLACEMENT(...) __API_DEPRECATED_REP_GET_MACRO(__VA_ARGS__, __API_DEPRECATED_REP5, __API_DEPRECATED_REP4, __API_DEPRECATED_REP3, __API_DEPRECATED_REP2, __API_DEPRECATED_REP1)(__VA_ARGS__)
|
|
|
|
#define API_UNAVAILABLE(...) __API_UNAVAILABLE_GET_MACRO(__VA_ARGS__, __API_UNAVAILABLE3, __API_UNAVAILABLE2, __API_UNAVAILABLE1)(__VA_ARGS__)
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define API_AVAILABLE(...)
|
|
|
|
#define API_DEPRECATED(...)
|
|
|
|
#define API_DEPRECATED_WITH_REPLACEMENT(...)
|
|
|
|
#define API_UNAVAILABLE(...)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
EOF
|
|
|
|
|
|
|
|
cat <<EOF > $out/include/TargetConditionals.h
|
|
|
|
#ifndef __TARGETCONDITIONALS__
|
|
|
|
#define __TARGETCONDITIONALS__
|
|
|
|
#define TARGET_OS_MAC 1
|
|
|
|
#define TARGET_OS_OSX 1
|
|
|
|
#define TARGET_OS_WIN32 0
|
|
|
|
#define TARGET_OS_UNIX 0
|
|
|
|
#define TARGET_OS_EMBEDDED 0
|
|
|
|
#define TARGET_OS_IPHONE 0
|
|
|
|
#define TARGET_IPHONE_SIMULATOR 0
|
|
|
|
#define TARGET_OS_LINUX 0
|
|
|
|
|
|
|
|
#define TARGET_CPU_PPC 0
|
|
|
|
#define TARGET_CPU_PPC64 0
|
|
|
|
#define TARGET_CPU_68K 0
|
|
|
|
#define TARGET_CPU_X86 0
|
|
|
|
#define TARGET_CPU_X86_64 1
|
|
|
|
#define TARGET_CPU_ARM 0
|
|
|
|
#define TARGET_CPU_MIPS 0
|
|
|
|
#define TARGET_CPU_SPARC 0
|
|
|
|
#define TARGET_CPU_ALPHA 0
|
|
|
|
#define TARGET_RT_MAC_CFM 0
|
|
|
|
#define TARGET_RT_MAC_MACHO 1
|
|
|
|
#define TARGET_RT_LITTLE_ENDIAN 1
|
|
|
|
#define TARGET_RT_BIG_ENDIAN 0
|
|
|
|
#define TARGET_RT_64_BIT 1
|
|
|
|
#endif /* __TARGETCONDITIONALS__ */
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# The startup object files
|
|
|
|
cp ${Csu}/lib/* $out/lib
|
|
|
|
|
2020-11-19 00:13:47 +00:00
|
|
|
cp -vr \
|
|
|
|
${darwin-stubs}/usr/lib/libSystem.B.tbd \
|
|
|
|
${darwin-stubs}/usr/lib/system \
|
|
|
|
$out/lib
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-11-19 00:13:47 +00:00
|
|
|
substituteInPlace $out/lib/libSystem.B.tbd \
|
|
|
|
--replace "/usr/lib/system/" "$out/lib/system/"
|
|
|
|
ln -s libSystem.B.tbd $out/lib/libSystem.tbd
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# Set up links to pretend we work like a conventional unix (Apple's design, not mine!)
|
|
|
|
for name in c dbm dl info m mx poll proc pthread rpcsvc util gcc_s.10.4 gcc_s.10.5; do
|
2020-11-19 00:13:47 +00:00
|
|
|
ln -s libSystem.tbd $out/lib/lib$name.tbd
|
2020-04-24 23:36:52 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
# This probably doesn't belong here, but we want to stay similar to glibc, which includes resolv internally...
|
|
|
|
cp ${libresolv}/lib/libresolv.9.dylib $out/lib/libresolv.9.dylib
|
|
|
|
resolv_libSystem=$(otool -L "$out/lib/libresolv.9.dylib" | tail -n +3 | grep -o "$NIX_STORE.*-\S*") || true
|
|
|
|
echo $libs
|
|
|
|
|
|
|
|
chmod +w $out/lib/libresolv.9.dylib
|
|
|
|
install_name_tool \
|
|
|
|
-id $out/lib/libresolv.9.dylib \
|
2020-11-19 00:13:47 +00:00
|
|
|
-change "$resolv_libSystem" /usr/lib/libSystem.dylib \
|
2020-04-24 23:36:52 +00:00
|
|
|
$out/lib/libresolv.9.dylib
|
|
|
|
ln -s libresolv.9.dylib $out/lib/libresolv.dylib
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-11-19 00:13:47 +00:00
|
|
|
description = "The Mac OS libc/libSystem (tapi library with pure headers)";
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = with maintainers; [ copumpkin gridaphobe ];
|
|
|
|
platforms = platforms.darwin;
|
|
|
|
license = licenses.apsl20;
|
|
|
|
};
|
|
|
|
}
|