mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 13:23:17 +00:00
mesa: fix build for armv5tel
Fixes: e7a2c65ab5
("mesa: reorganize default driver list")
This commit is contained in:
parent
0da24fa3ba
commit
b538df3133
@ -39,7 +39,11 @@
|
||||
"amd" # AMD (aka RADV)
|
||||
"microsoft-experimental" # WSL virtualized GPU (aka DZN/Dozen)
|
||||
"swrast" # software renderer (aka Lavapipe)
|
||||
"virtio-experimental" # QEMU virtualized GPU (aka VirGL)
|
||||
]
|
||||
++ lib.optionals (stdenv.hostPlatform.isAarch -> lib.versionAtLeast stdenv.hostPlatform.parsed.cpu.version "6") [
|
||||
# QEMU virtualized GPU (aka VirGL)
|
||||
# Requires ATOMIC_INT_LOCK_FREE == 2.
|
||||
"virtio-experimental"
|
||||
]
|
||||
++ lib.optionals stdenv.isAarch64 [
|
||||
"broadcom" # Broadcom VC5 (Raspberry Pi 4, aka V3D)
|
||||
|
Loading…
Reference in New Issue
Block a user