2016-06-26 05:45:55 +01:00
|
|
|
{ stdenv, sdk, writeText, platformName, xcbuild }:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
Info = {
|
|
|
|
CFBundleIdentifier = platformName;
|
|
|
|
Type = "Platform";
|
2016-11-10 05:07:24 +00:00
|
|
|
Name = "macosx";
|
2016-06-26 05:45:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
Version = {
|
|
|
|
ProjectName = "OSXPlatformSupport";
|
|
|
|
};
|
|
|
|
|
2016-11-12 21:51:25 +00:00
|
|
|
# These files are all based off of Xcode spec fies found in
|
|
|
|
# /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Xcode/Speciications/.
|
2016-11-10 08:20:12 +00:00
|
|
|
|
2016-11-12 21:51:25 +00:00
|
|
|
# Based off of the MacOSX Architectures.xcpsec file. All i386 stuff
|
|
|
|
# is removed because NixPkgs only supports darwin-x86_64.
|
2016-11-10 08:20:12 +00:00
|
|
|
Architectures = [
|
|
|
|
{
|
|
|
|
Identifier = "Standard";
|
|
|
|
Type = "Architecture";
|
|
|
|
Name = "Standard Architectures (64-bit Intel)";
|
|
|
|
RealArchitectures = [ "x86_64" ];
|
|
|
|
ArchitectureSetting = "ARCHS_STANDARD";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
Identifier = "Universal";
|
|
|
|
Type = "Architecture";
|
|
|
|
Name = "Universal (64-bit Intel)";
|
|
|
|
RealArchitectures = [ "x86_64" ];
|
|
|
|
ArchitectureSetting = "ARCHS_STANDARD_32_64_BIT";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
Identifier = "Native";
|
|
|
|
Type = "Architecture";
|
|
|
|
Name = "Native Architecture of Build Machine";
|
|
|
|
ArchitectureSetting = "NATIVE_ARCH_ACTUAL";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
Identifier = "Standard64bit";
|
|
|
|
Type = "Architecture";
|
|
|
|
Name = "64-bit Intel";
|
|
|
|
RealArchitectures = [ "x86_64" ];
|
|
|
|
ArchitectureSetting = "ARCHS_STANDARD_64_BIT";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
Identifier = "x86_64";
|
|
|
|
Type = "Architecture";
|
|
|
|
Name = "Intel 64-bit";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
Identifier = "Standard_Including_64_bit";
|
|
|
|
Type = "Architecture";
|
|
|
|
Name = "Standard Architectures (including 64-bit)";
|
|
|
|
RealArchitectures = [ "x86_64" ];
|
|
|
|
ArchitectureSetting = "ARCHS_STANDARD_INCLUDING_64_BIT";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2016-11-12 21:51:25 +00:00
|
|
|
# Based off of the MacOSX Package Types.xcpsec file. Only keep the
|
|
|
|
# bare minimum needed.
|
2016-11-10 08:20:12 +00:00
|
|
|
PackageTypes = [
|
|
|
|
{
|
|
|
|
Identifier = "com.apple.package-type.mach-o-executable";
|
|
|
|
Type = "PackageType";
|
|
|
|
Name = "Mach-O Executable";
|
|
|
|
DefaultBuildSettings = {
|
|
|
|
EXECUTABLE_NAME = "$(EXECUTABLE_PREFIX)$(PRODUCT_NAME)$(EXECUTABLE_VARIANT_SUFFIX)$(EXECUTABLE_SUFFIX)";
|
|
|
|
EXECUTABLE_PATH = "$(EXECUTABLE_NAME)";
|
|
|
|
};
|
|
|
|
ProductReference = {
|
|
|
|
FileType = "compiled.mach-o.executable";
|
|
|
|
Name = "$(EXECUTABLE_NAME)";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
{
|
|
|
|
Identifier = "com.apple.package-type.mach-o-objfile";
|
|
|
|
Type = "PackageType";
|
|
|
|
Name = "Mach-O Object File";
|
|
|
|
DefaultBuildSettings = {
|
|
|
|
EXECUTABLE_NAME = "$(EXECUTABLE_PREFIX)$(PRODUCT_NAME)$(EXECUTABLE_VARIANT_SUFFIX)$(EXECUTABLE_SUFFIX)";
|
|
|
|
EXECUTABLE_PATH = "$(EXECUTABLE_NAME)";
|
|
|
|
};
|
|
|
|
ProductReference = {
|
|
|
|
FileType = "compiled.mach-o.objfile";
|
|
|
|
Name = "$(EXECUTABLE_NAME)";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
{
|
|
|
|
Identifier = "com.apple.package-type.mach-o-dylib";
|
|
|
|
Type = "PackageType";
|
|
|
|
Name = "Mach-O Dynamic Library";
|
|
|
|
DefaultBuildSettings = {
|
|
|
|
EXECUTABLE_NAME = "$(EXECUTABLE_PREFIX)$(PRODUCT_NAME)$(EXECUTABLE_VARIANT_SUFFIX)$(EXECUTABLE_SUFFIX)";
|
|
|
|
EXECUTABLE_PATH = "$(EXECUTABLE_NAME)";
|
|
|
|
};
|
|
|
|
ProductReference = {
|
|
|
|
FileType = "compiled.mach-o.dylib";
|
|
|
|
Name = "$(EXECUTABLE_NAME)";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2016-11-12 21:51:25 +00:00
|
|
|
# Based off of the MacOSX Product Types.xcpsec file. All
|
|
|
|
# bundles/wrapper are removed, because we prefer dynamic products in
|
|
|
|
# NixPkgs.
|
2016-11-10 08:20:12 +00:00
|
|
|
ProductTypes = [
|
|
|
|
{
|
|
|
|
Identifier = "com.apple.product-type.tool";
|
|
|
|
Type = "ProductType";
|
|
|
|
Name = "Command-line Tool";
|
|
|
|
PackageTypes = [ "com.apple.package-type.mach-o-executable" ];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
Identifier = "com.apple.product-type.objfile";
|
|
|
|
Type = "ProductType";
|
|
|
|
Name = "Object File";
|
|
|
|
PackageTypes = [ "com.apple.package-type.mach-o-objfile" ];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
Identifier = "com.apple.product-type.library.dynamic";
|
|
|
|
Type = "ProductType";
|
|
|
|
Name = "Dynamic Library";
|
|
|
|
PackageTypes = [ "com.apple.package-type.mach-o-dylib" ];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2016-06-26 05:45:55 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "nixpkgs.platform";
|
|
|
|
buildInputs = [ xcbuild ];
|
|
|
|
buildCommand = ''
|
|
|
|
mkdir -p $out/
|
|
|
|
cd $out/
|
|
|
|
|
2016-11-06 00:51:15 +00:00
|
|
|
plutil -convert xml1 -o Info.plist ${writeText "Info.plist" (builtins.toJSON Info)}
|
|
|
|
plutil -convert xml1 -o version.plist ${writeText "version.plist" (builtins.toJSON Version)}
|
2016-06-26 05:45:55 +01:00
|
|
|
|
2016-11-10 08:20:12 +00:00
|
|
|
mkdir -p $out/Developer/Library/Xcode/Specifications/
|
|
|
|
cd $out/Developer/Library/Xcode/Specifications/
|
|
|
|
plutil -convert xml1 -o Architectures.xcspec ${writeText "Architectures.xcspec" (builtins.toJSON Architectures)}
|
|
|
|
plutil -convert xml1 -o PackageTypes.xcspec ${writeText "PackageTypes.xcspec" (builtins.toJSON PackageTypes)}
|
|
|
|
plutil -convert xml1 -o ProductTypes.xcspec ${writeText "ProductTypes.xcspec" (builtins.toJSON ProductTypes)}
|
|
|
|
|
2016-06-26 05:45:55 +01:00
|
|
|
mkdir -p $out/Developer/SDKs/
|
|
|
|
cd $out/Developer/SDKs/
|
|
|
|
ln -s ${sdk}
|
|
|
|
'';
|
|
|
|
}
|