summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2024-09-30 18:01:28 +0300
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-10-13 20:16:01 +0000
commit04e7fe78c0c76c1032d6653b22ff9bcd5be8d55a (patch)
tree0475c8c22a4691a675f7452027f9ac3822404e0c
parent[Backport release-24.05] raycast: 1.82.0 -> 1.84.2 (#348066) (diff)
downloadnixpkgs-origin/backport-345527-to-release-24.05.tar.gz
lib.systems.examples: Fix deprecated attrorigin/backport-345527-to-release-24.05
`For android 'sdkVer' has been renamed to 'androidSdkVersion'` While doing the above rename I forgot to consider if there were still darwin platforms in `lib.systems.examples` using `sdkVer` These still fail eval, but that happened before the renaming too. `error: Unsupported sdk: 14.3` (cherry picked from commit aed1142d79b080aa7ace6c458ae88a986275561e)
-rw-r--r--lib/systems/examples.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/systems/examples.nix b/lib/systems/examples.nix
index ae76569ad859..f942ab9f7153 100644
--- a/lib/systems/examples.nix
+++ b/lib/systems/examples.nix
@@ -256,7 +256,7 @@ rec {
iphone64 = {
config = "aarch64-apple-ios";
# config = "aarch64-apple-darwin14";
- sdkVer = "14.3";
+ darwinSdkVersion = "14.3";
xcodeVer = "12.3";
xcodePlatform = "iPhoneOS";
useiOSPrebuilt = true;
@@ -265,7 +265,7 @@ rec {
iphone32 = {
config = "armv7a-apple-ios";
# config = "arm-apple-darwin10";
- sdkVer = "14.3";
+ darwinSdkVersion = "14.3";
xcodeVer = "12.3";
xcodePlatform = "iPhoneOS";
useiOSPrebuilt = true;
@@ -274,7 +274,7 @@ rec {
iphone64-simulator = {
config = "x86_64-apple-ios";
# config = "x86_64-apple-darwin14";
- sdkVer = "14.3";
+ darwinSdkVersion = "14.3";
xcodeVer = "12.3";
xcodePlatform = "iPhoneSimulator";
darwinPlatform = "ios-simulator";
@@ -284,7 +284,7 @@ rec {
iphone32-simulator = {
config = "i686-apple-ios";
# config = "i386-apple-darwin11";
- sdkVer = "14.3";
+ darwinSdkVersion = "14.3";
xcodeVer = "12.3";
xcodePlatform = "iPhoneSimulator";
darwinPlatform = "ios-simulator";