From dad5a626744be3c22915df72631277b83f803c3e Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Sat, 31 Aug 2024 09:19:01 +0200 Subject: [PATCH] mesa.meta.platforms: broaden While there's a lot in Mesa that's architecture-specific, there's also portable stuff that should be able to build for basically any Unix out there. It should work on almost any Linux architecture, and it's also used by every BSD I think. --- pkgs/development/libraries/mesa/common.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pkgs/development/libraries/mesa/common.nix b/pkgs/development/libraries/mesa/common.nix index d73174195f3a..37ae8905891f 100644 --- a/pkgs/development/libraries/mesa/common.nix +++ b/pkgs/development/libraries/mesa/common.nix @@ -29,11 +29,7 @@ rec { homepage = "https://www.mesa3d.org/"; changelog = "https://www.mesa3d.org/relnotes/${version}.html"; license = with lib.licenses; [ mit ]; # X11 variant, in most files - platforms = [ - "i686-linux" "x86_64-linux" "x86_64-darwin" "armv5tel-linux" - "armv6l-linux" "armv7l-linux" "armv7a-linux" "aarch64-linux" - "powerpc64-linux" "powerpc64le-linux" "aarch64-darwin" "riscv64-linux" - ]; + platforms = lib.platforms.unix; maintainers = with lib.maintainers; [ primeos vcunat ]; # Help is welcome :) }; }