summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@yahoo.com>2017-05-31 00:49:58 -0400
committerGitHub <noreply@github.com>2017-05-31 00:49:58 -0400
commit4e376cce7ecca2aa184c701e3d2cf3a1f3298d82 (patch)
tree0f8fe6979f0d9ede5cd0b261273273680ded5d83 /lib
parentcfe6bd47ed64e29c4e17c4362cb4cf1b1029e415 (diff)
parent9f680d30f4a8bac670932255caa4d39e7fb39f09 (diff)
downloadnixpkgs-4e376cce7ecca2aa184c701e3d2cf3a1f3298d82.tar
nixpkgs-4e376cce7ecca2aa184c701e3d2cf3a1f3298d82.tar.gz
nixpkgs-4e376cce7ecca2aa184c701e3d2cf3a1f3298d82.tar.bz2
nixpkgs-4e376cce7ecca2aa184c701e3d2cf3a1f3298d82.tar.lz
nixpkgs-4e376cce7ecca2aa184c701e3d2cf3a1f3298d82.tar.xz
nixpkgs-4e376cce7ecca2aa184c701e3d2cf3a1f3298d82.tar.zst
nixpkgs-4e376cce7ecca2aa184c701e3d2cf3a1f3298d82.zip
Merge pull request #26269 from obsidiansystems/libSystem
lib and doc: Use "libSystem" as identifier for that libc in platforms
Diffstat (limited to 'lib')
-rw-r--r--lib/systems/examples.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/systems/examples.nix b/lib/systems/examples.nix
index 3ffaf393435..e394f43831c 100644
--- a/lib/systems/examples.nix
+++ b/lib/systems/examples.nix
@@ -96,14 +96,14 @@ rec {
   iphone64 = {
     config = "aarch64-apple-darwin14";
     arch = "arm64";
-    libc = "libsystem";
+    libc = "libSystem";
     platform = {};
   };
 
   iphone32 = {
     config = "arm-apple-darwin10";
     arch = "armv7-a";
-    libc = "libsystem";
+    libc = "libSystem";
     platform = {};
   };