mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-03-16 17:13:21 +00:00
Merge pull request #110828 from r-burns/ppc64-riscv-linux-arch
lib/systems: fix linuxArch for power + riscv
This commit is contained in:
commit
054f792d31
|
@ -92,6 +92,8 @@ rec {
|
|||
else if final.isx86_32 then "i386"
|
||||
else if final.isx86_64 then "x86_64"
|
||||
else if final.isMips then "mips"
|
||||
else if final.isPower then "powerpc"
|
||||
else if final.isRiscV then "riscv"
|
||||
else final.parsed.cpu.name;
|
||||
|
||||
qemuArch =
|
||||
|
|
Loading…
Reference in a new issue