Unverified Commit dad5a626 authored by Alyssa Ross's avatar Alyssa Ross
Browse files

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.
parent 6e5af4a4
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -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 :)
  };
}