summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/xcode/sdk-pkgs.nix
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-06-25 22:18:23 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2018-06-25 22:18:23 -0400
commit0bfffbc5e19f1a16c19f3cec5272174555006869 (patch)
tree15842d24278f303817918e8ca43c6d0a60e1d901 /pkgs/os-specific/darwin/xcode/sdk-pkgs.nix
parent9b0b31d9813220de53e950d0f207a3b874dc0780 (diff)
downloadnixpkgs-0bfffbc5e19f1a16c19f3cec5272174555006869.tar
nixpkgs-0bfffbc5e19f1a16c19f3cec5272174555006869.tar.gz
nixpkgs-0bfffbc5e19f1a16c19f3cec5272174555006869.tar.bz2
nixpkgs-0bfffbc5e19f1a16c19f3cec5272174555006869.tar.lz
nixpkgs-0bfffbc5e19f1a16c19f3cec5272174555006869.tar.xz
nixpkgs-0bfffbc5e19f1a16c19f3cec5272174555006869.tar.zst
nixpkgs-0bfffbc5e19f1a16c19f3cec5272174555006869.zip
xcode: add xcodePlatform to system
This give us a little bit more control over what target we are using.
Eventually we can target other things like WatchOS or MacOS.
Diffstat (limited to 'pkgs/os-specific/darwin/xcode/sdk-pkgs.nix')
-rw-r--r--pkgs/os-specific/darwin/xcode/sdk-pkgs.nix71
1 files changed, 71 insertions, 0 deletions
diff --git a/pkgs/os-specific/darwin/xcode/sdk-pkgs.nix b/pkgs/os-specific/darwin/xcode/sdk-pkgs.nix
new file mode 100644
index 00000000000..d5ed21cd9e2
--- /dev/null
+++ b/pkgs/os-specific/darwin/xcode/sdk-pkgs.nix
@@ -0,0 +1,71 @@
+{ lib, hostPlatform, targetPlatform
+, clang-unwrapped
+, binutils-unwrapped
+, runCommand
+, stdenv
+, wrapBintoolsWith
+, wrapCCWith
+, buildIosSdk, targetIosSdkPkgs
+, xcode
+}:
+
+let
+
+minSdkVersion = "9.0";
+
+iosPlatformArch = { parsed, ... }: {
+  "armv7a"  = "armv7";
+  "aarch64" = "arm64";
+  "x86_64"  = "x86_64";
+}.${parsed.cpu.name};
+
+in
+
+rec {
+  sdk = rec {
+    name = "ios-sdk";
+    type = "derivation";
+    outPath = xcode + "/Contents/Developer/Platforms/${platform}.platform/Developer/SDKs/${platform}${version}.sdk";
+
+    platform = targetPlatform.xcodePlatform;
+    version = targetPlatform.sdkVer;
+  };
+
+  binutils = wrapBintoolsWith {
+    libc = targetIosSdkPkgs.libraries;
+    bintools = binutils-unwrapped;
+    extraBuildCommands = ''
+      echo "-arch ${iosPlatformArch targetPlatform}" >> $out/nix-support/libc-ldflags
+    '';
+  };
+
+  clang = (wrapCCWith {
+    cc = clang-unwrapped;
+    bintools = binutils;
+    libc = targetIosSdkPkgs.libraries;
+    extraBuildCommands = ''
+      tr '\n' ' ' < $out/nix-support/cc-cflags > cc-cflags.tmp
+      mv cc-cflags.tmp $out/nix-support/cc-cflags
+      echo "-target ${targetPlatform.config} -arch ${iosPlatformArch targetPlatform}" >> $out/nix-support/cc-cflags
+      echo "-isystem ${sdk}/usr/include -isystem ${sdk}/usr/include/c++/4.2.1/ -stdlib=libstdc++" >> $out/nix-support/cc-cflags
+    '' + stdenv.lib.optionalString (sdk.platform == "iPhoneSimulator") ''
+      echo "-mios-simulator-version-min=${minSdkVersion}" >> $out/nix-support/cc-cflags
+    '' + stdenv.lib.optionalString (sdk.platform == "iPhoneOS") ''
+      echo "-miphoneos-version-min=${minSdkVersion}" >> $out/nix-support/cc-cflags
+    '';
+  }) // {
+    inherit sdk;
+  };
+
+  libraries = let sdk = buildIosSdk; in runCommand "libSystem-prebuilt" {
+    passthru = {
+      inherit sdk;
+    };
+  } ''
+    if ! [ -d ${sdk} ]; then
+        echo "You must have version ${sdk.version} of the ${sdk.platform} sdk installed at ${sdk}" >&2
+        exit 1
+    fi
+    ln -s ${sdk}/usr $out
+  '';
+}