Skip to content

Commit

Permalink
lib/systems: fix linuxArch for power + riscv
Browse files Browse the repository at this point in the history
Looks like these got left behind in the
kernelArch -> linuxArch migration.

Fixes:
* pkgsCross.powernv.linuxHeaders
* pkgsCross.riscv64.linuxHeaders
* pkgsCross.riscv32.linuxHeaders
and dependees
  • Loading branch information
r-burns committed Jan 26, 2021
1 parent 1e38f0b commit 8baac2a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/systems/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit 8baac2a

Please sign in to comment.