apple_sdk_11: alias JavaVM
Apple removed JavaVM but JavaNativeFoundation seems to be the replacement. Should be safe to substitute usage of JavaVM with JavaNativeFoundation.
This commit is contained in:
parent
0093d2d2d8
commit
430ac9b830
1 changed files with 3 additions and 0 deletions
|
@ -151,6 +151,9 @@ in rec {
|
|||
# This framework doesn't exist in newer SDKs (somewhere around 10.13), but
|
||||
# there are references to it in nixpkgs.
|
||||
QuickTime = throw "QuickTime framework not available";
|
||||
|
||||
# Seems to be appropriate given https://developer.apple.com/forums/thread/666686
|
||||
JavaVM = super.JavaNativeFoundation;
|
||||
};
|
||||
|
||||
bareFrameworks = (
|
||||
|
|
Loading…
Reference in a new issue