tracy-wayland: drop darwin as supported platform (#427199)

This commit is contained in:
Philip Taron
2025-07-21 15:54:43 -07:00
committed by GitHub
+1 -2
View File
@@ -25,7 +25,6 @@
}:
assert withGtkFileSelector -> stdenv.hostPlatform.isLinux;
assert withWayland -> stdenv.hostPlatform.isLinux;
stdenv.mkDerivation rec {
pname = if withWayland then "tracy-wayland" else "tracy-glfw";
@@ -130,6 +129,6 @@ stdenv.mkDerivation rec {
mpickering
nagisa
];
platforms = platforms.linux ++ platforms.darwin;
platforms = platforms.linux ++ lib.optionals (!withWayland) platforms.darwin;
};
}