17 lines
336 B
Nix
17 lines
336 B
Nix
{ lib, config }:
|
|
|
|
self: super: {
|
|
preBuild =
|
|
super.preBuild or ""
|
|
+ ''
|
|
platformPath=$out/Platforms/MacOSX.platform
|
|
sdkpath=$platformPath/Developer/SDKs
|
|
'';
|
|
|
|
preInstall =
|
|
super.preInstall or ""
|
|
+ ''
|
|
platformPath=$out/Platforms/MacOSX.platform
|
|
sdkpath=$platformPath/Developer/SDKs
|
|
'';
|
|
}
|