summaryrefslogtreecommitdiffstats
path: root/lib/systems
diff options
context:
space:
mode:
authorChuck <chuck@intelligence.org>2020-02-05 10:54:54 -0800
committerChuck <chuck@intelligence.org>2020-02-05 10:56:14 -0800
commita7835b936ed8836475ca1aab01e921c3b256776d (patch)
tree9441c6d2e808667cdcfcc7d0543637e5e32c60a0 /lib/systems
parent9333e47b28d9da0d20479b7722ee4de195848bed (diff)
lib.systems.elaborate: isArm -> isAarch32
This is the last reference to isArm. isArm is deprecated after 18.03. This substitution was performed tree-wide in #37401.
Diffstat (limited to 'lib/systems')
-rw-r--r--lib/systems/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/systems/default.nix b/lib/systems/default.nix
index 026117cc34fd..36afdae38668 100644
--- a/lib/systems/default.nix
+++ b/lib/systems/default.nix
@@ -84,7 +84,7 @@ rec {
else final.parsed.cpu.name;
qemuArch =
- if final.isArm then "arm"
+ if final.isAarch32 then "arm"
else if final.isx86_64 then "x86_64"
else if final.isx86 then "i386"
else {