From dffae84fee56eab544fffe80d70027f1d38ca7ab Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Sat, 28 Jun 2025 11:27:27 +0200 Subject: [PATCH] rutabaga_gfx: tighten platforms Let's use the actual list of supported platforms, rather than adding to badPlatforms one at a time as we run into platforms that don't work. --- pkgs/by-name/ru/rutabaga_gfx/package.nix | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ru/rutabaga_gfx/package.nix b/pkgs/by-name/ru/rutabaga_gfx/package.nix index efaec27ec715..431b60f173f9 100644 --- a/pkgs/by-name/ru/rutabaga_gfx/package.nix +++ b/pkgs/by-name/ru/rutabaga_gfx/package.nix @@ -92,8 +92,16 @@ stdenv.mkDerivation (finalAttrs: { description = "cross-platform abstraction for GPU and display virtualization"; license = licenses.bsd3; maintainers = with maintainers; [ qyliss ]; - platforms = platforms.darwin ++ platforms.linux; - # error[E0432]: unresolved import `self::consts` - badPlatforms = [ "loongarch64-linux" ]; + platforms = [ + # src/generated/virgl_debug_callback_bindings.rs + "aarch64-darwin" + "aarch64-linux" + "armv5tel-linux" + "armv6l-linux" + "armv7a-linux" + "armv7l-linux" + "x86_64-darwin" + "x86_64-linux" + ]; }; })