Merge pull request #72727 from oxalica/mips-parse

lib.systems: handle mips family properly

authored by Matthew Bauer and committed by GitHub 46f1daea c54848ee

+2
+1
lib/systems/default.nix
··· 79 79 else if final.isAarch64 then "arm64" 80 80 else if final.isx86_32 then "x86" 81 81 else if final.isx86_64 then "ia64" 82 + else if final.isMips then "mips" 82 83 else final.parsed.cpu.name; 83 84 84 85 qemuArch =
+1
lib/systems/parse.nix
··· 327 327 } 328 328 ]; 329 329 }; 330 + gnuabi64 = { abi = "64"; }; 330 331 331 332 musleabi = { float = "soft"; }; 332 333 musleabihf = { float = "hard"; };