Merge pull request #247288 from amjoseph-nixpkgs/pr/lib/systems/qemu-mips64n32

This commit is contained in:
Artturi 2023-09-21 03:06:24 +03:00 committed by GitHub
commit aeaa0a7be9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -183,6 +183,7 @@ rec {
else if final.isS390 && !final.isS390x then null
else if final.isx86_64 then "x86_64"
else if final.isx86 then "i386"
else if final.isMips64n32 then "mipsn32${lib.optionalString final.isLittleEndian "el"}"
else if final.isMips64 then "mips64${lib.optionalString final.isLittleEndian "el"}"
else final.uname.processor;