summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-06-04 13:34:40 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2019-06-04 13:34:40 -0400
commitf7c7207a3fb69a00faf6aad5a165e3c53c1c1c6c (patch)
tree1186a407e598c5fa04c74e807b7d5f4235108932
parent77057b1b3c87ff9d872473c9bb7733b35a574c09 (diff)
downloadnixpkgs-f7c7207a3fb69a00faf6aad5a165e3c53c1c1c6c.tar
nixpkgs-f7c7207a3fb69a00faf6aad5a165e3c53c1c1c6c.tar.gz
nixpkgs-f7c7207a3fb69a00faf6aad5a165e3c53c1c1c6c.tar.bz2
nixpkgs-f7c7207a3fb69a00faf6aad5a165e3c53c1c1c6c.tar.lz
nixpkgs-f7c7207a3fb69a00faf6aad5a165e3c53c1c1c6c.tar.xz
nixpkgs-f7c7207a3fb69a00faf6aad5a165e3c53c1c1c6c.tar.zst
nixpkgs-f7c7207a3fb69a00faf6aad5a165e3c53c1c1c6c.zip
systems: add missing doubles
in https://github.com/NixOS/nixpkgs/pull/60349, the attr handling was
removed. This means we rely on these double values for determing what
we are compatible with. This adds some of the missing doubles to this
list.

https://hydra.nixos.org/eval/1523389#tabs-removed
-rw-r--r--lib/systems/doubles.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/systems/doubles.nix b/lib/systems/doubles.nix
index ff071c182d4..68c5a1aa815 100644
--- a/lib/systems/doubles.nix
+++ b/lib/systems/doubles.nix
@@ -20,7 +20,11 @@ let
 
     "wasm64-wasi" "wasm32-wasi"
 
+    "powerpc64le-linux"
+
     "riscv32-linux" "riscv64-linux"
+
+    "aarch64-none" "avr-none" "arm-none" "i686-none" "x86_64-none" "ppc-none" "msp430-none"
   ];
 
   allParsed = map parse.mkSystemFromString all;