From a7835b936ed8836475ca1aab01e921c3b256776d Mon Sep 17 00:00:00 2001 From: Chuck Date: Wed, 5 Feb 2020 10:54:54 -0800 Subject: [PATCH] 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. --- lib/systems/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/systems/default.nix b/lib/systems/default.nix index 026117cc34f..36afdae3866 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 {