mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-13 16:34:27 +00:00
9 lines
218 B
Bash
9 lines
218 B
Bash
|
addPrivateFrameworks() {
|
||
|
flag="-F/System/Library/PrivateFrameworks"
|
||
|
if [[ "$NIX_CFLAGS_COMPILE" != *$flag* ]]; then
|
||
|
NIX_CFLAGS_COMPILE+=" $flag"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
addEnvHooks "$hostOffset" addPrivateFrameworks
|