mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
9 lines
485 B
Bash
9 lines
485 B
Bash
linkSystemCoreFoundationFramework() {
|
|
NIX_CFLAGS_COMPILE="-F@out@/Library/Frameworks${NIX_CFLAGS_COMPILE:+ }${NIX_CFLAGS_COMPILE-}"
|
|
# gross! many symbols (such as _OBJC_CLASS_$_NSArray) are defined in system CF, but not
|
|
# in the opensource release
|
|
# if the package needs private headers, we assume they also want to link with system CF
|
|
NIX_LDFLAGS+=" @out@/Library/Frameworks/CoreFoundation.framework/CoreFoundation"
|
|
}
|
|
|
|
preConfigureHooks+=(linkSystemCoreFoundationFramework)
|