Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkgs/development/libraries/mesa/common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
# nix build .#legacyPackages.x86_64-darwin.mesa .#legacyPackages.aarch64-darwin.mesa
rec {
pname = "mesa";
version = "25.2.6";
version = "25.3.0";

src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "mesa";
repo = "mesa";
rev = "mesa-${version}";
hash = "sha256-erfvNR1Yor3k8gVVClyiBJsgyaOv7BMFd1NSgieTY5I=";
hash = "sha256-MviXDRAbCEXM9dIzD94/CM0bjlF4zCJUVE91Xst/uII=";
};

meta = {
Expand Down
9 changes: 6 additions & 3 deletions pkgs/development/libraries/mesa/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
spirv-tools,
intltool,
jdupes,
libdisplay-info,
libdrm,
libgbm,
libglvnd,
Expand Down Expand Up @@ -50,6 +51,7 @@
"asahi" # Apple AGX
"crocus" # Intel legacy
"d3d12" # WSL emulated GPU (aka Dozen)
"ethosu" # ARM Ethos NPU
"etnaviv" # Vivante GPU designs (mostly NXP/Marvell SoCs)
"freedreno" # Qualcomm Adreno (all Qualcomm SoCs)
"i915" # Intel extra legacy
Expand All @@ -61,6 +63,7 @@
"r300" # very old AMD
"r600" # less old AMD
"radeonsi" # new AMD (GCN+)
"rocket" # Rockchip NPU
"softpipe" # older software renderer
"svga" # VMWare virtualized GPU
"tegra" # Nvidia Tegra SoCs
Expand All @@ -75,7 +78,7 @@
"broadcom" # Broadcom VC5 (Raspberry Pi 4, aka V3D)
"freedreno" # Qualcomm Adreno (all Qualcomm SoCs)
"gfxstream" # Android virtualized GPU
"imagination-experimental" # PowerVR Rogue (currently N/A)
"imagination" # PowerVR Rogue (currently N/A)
"intel_hasvk" # Intel Haswell/Broadwell, "legacy" Vulkan driver (https://www.phoronix.com/news/Intel-HasVK-Drop-Dead-Code)
"intel" # new Intel (aka ANV)
"microsoft-experimental" # WSL virtualized GPU (aka DZN/Dozen)
Expand All @@ -96,6 +99,7 @@
"wayland"
],
vulkanLayers ? [
"anti-lag"
"device-select"
"intel-nullhw"
"overlay"
Expand Down Expand Up @@ -144,8 +148,6 @@ stdenv.mkDerivation {

patches = [
./opencl.patch
# https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37027
./gallivm-llvm-21.patch
];

postPatch = ''
Expand Down Expand Up @@ -256,6 +258,7 @@ stdenv.mkDerivation {
elfutils
expat
spirv-tools
libdisplay-info
libdrm
libgbm
libglvnd
Expand Down
53 changes: 0 additions & 53 deletions pkgs/development/libraries/mesa/gallivm-llvm-21.patch

This file was deleted.

Loading