Commit f0b12dfa authored by jopejoe1's avatar jopejoe1
Browse files

xeve: update broken platforms

parent 18fa5075
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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;
  };
})