mir: Restrict supported platforms to LE-only

Implementation of supported buffer formats for non-LE is marked as a TODO. Builds, but tests fail and compositors fail to start.
This commit is contained in:
OPNA2608
2025-10-30 10:45:48 +01:00
parent 5b105d8982
commit 790d95b4ee
+3 -1
View File
@@ -238,7 +238,9 @@ stdenv.mkDerivation (finalAttrs: {
onny
OPNA2608
];
platforms = lib.platforms.linux;
# Onle LE has valid graphics buffer formats
# https://github.com/canonical/mir/blob/ba8e83f75084379dec8e23131fdf04fa4a4567ac/src/platforms/common/server/shm_buffer.cpp#L61-L65
platforms = lib.lists.intersectLists lib.platforms.linux lib.platforms.littleEndian;
pkgConfigModules = [
"miral"
"mircommon"