summary refs log tree commit diff
path: root/lib/systems/doubles.nix
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-07-10 14:38:55 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2019-07-10 15:14:59 -0400
commitd059185badb3203d35eee0f70c48b85bf278fb57 (patch)
tree82dd52da130d0c08f716bb6f0f506ac7c84affa5 /lib/systems/doubles.nix
parent42559f1cf1ffac88c49f9c47d94d3f8499a052ec (diff)
downloadnixpkgs-d059185badb3203d35eee0f70c48b85bf278fb57.tar
nixpkgs-d059185badb3203d35eee0f70c48b85bf278fb57.tar.gz
nixpkgs-d059185badb3203d35eee0f70c48b85bf278fb57.tar.bz2
nixpkgs-d059185badb3203d35eee0f70c48b85bf278fb57.tar.lz
nixpkgs-d059185badb3203d35eee0f70c48b85bf278fb57.tar.xz
nixpkgs-d059185badb3203d35eee0f70c48b85bf278fb57.tar.zst
nixpkgs-d059185badb3203d35eee0f70c48b85bf278fb57.zip
Revert "Revert "systems/doubles.nix: add Apple doubles""
This reverts commit ce2f74df2cade57e74c235292c8b074281903e71.

Doubles are treated as -darwin here, to provide some consistency.
There is some ambiguity between “x86_64-darwin” and “i686-darwin”
which could refer to binaries linked between iOS simulator or real
macOS binaries. useiOSPrebuilt can be used to determine which to use,
however.
Diffstat (limited to 'lib/systems/doubles.nix')
-rw-r--r--lib/systems/doubles.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/systems/doubles.nix b/lib/systems/doubles.nix
index 09e9089aa6f..f096a0b17fc 100644
--- a/lib/systems/doubles.nix
+++ b/lib/systems/doubles.nix
@@ -13,9 +13,11 @@ let
 
     "i686-cygwin" "i686-freebsd" "i686-linux" "i686-netbsd" "i686-openbsd"
 
-    "x86_64-cygwin" "x86_64-darwin" "x86_64-freebsd" "x86_64-linux"
+    "x86_64-cygwin" "x86_64-freebsd" "x86_64-linux"
     "x86_64-netbsd" "x86_64-openbsd" "x86_64-solaris"
 
+    "x86_64-darwin" "i686-darwin" "aarch64-darwin" "armv7a-darwin"
+
     "x86_64-windows" "i686-windows"
 
     "wasm64-wasi" "wasm32-wasi"