xeve: update broken platforms

This commit is contained in:
jopejoe1
2024-07-18 20:27:05 +02:00
parent 18fa507569
commit f0b12dfafb
+2 -1
View File
@@ -44,6 +44,7 @@ stdenv.mkDerivation (finalAttrs: {
mainProgram = "xeve_app";
maintainers = with lib.maintainers; [ jopejoe1 ];
platforms = lib.platforms.all;
broken = !stdenv.hostPlatform.isx86;
# Currently only supports gcc and msvc as compiler, the limitation for clang gets removed in the next release, but that does not fix building on darwin.
broken = !stdenv.hostPlatform.isx86 || !stdenv.cc.isGNU;
};
})