2024-05-15 15:35:15 +00:00
|
|
|
{ lib
|
|
|
|
, OpenGL
|
|
|
|
, Xplugin
|
|
|
|
, bison
|
|
|
|
, buildPackages
|
|
|
|
, directx-headers
|
|
|
|
, elfutils
|
|
|
|
, expat
|
|
|
|
, fetchCrate
|
|
|
|
, fetchpatch
|
|
|
|
, fetchurl
|
|
|
|
, file
|
|
|
|
, flex
|
|
|
|
, glslang
|
|
|
|
, intltool
|
2022-04-15 01:41:22 +00:00
|
|
|
, jdupes
|
2024-05-15 15:35:15 +00:00
|
|
|
, libdrm
|
|
|
|
, libffi
|
|
|
|
, libglvnd
|
|
|
|
, libomxil-bellagio
|
|
|
|
, libunwind
|
|
|
|
, libva-minimal
|
|
|
|
, libvdpau
|
|
|
|
, llvmPackages
|
|
|
|
, lm_sensors
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, openssl
|
|
|
|
, pkg-config
|
|
|
|
, python3Packages
|
2024-01-13 08:15:51 +00:00
|
|
|
, rust-bindgen
|
2024-05-15 15:35:15 +00:00
|
|
|
, rustPlatform
|
2023-01-20 10:41:00 +00:00
|
|
|
, rustc
|
2023-02-02 18:25:31 +00:00
|
|
|
, spirv-llvm-translator
|
2024-05-15 15:35:15 +00:00
|
|
|
, stdenv
|
2023-02-02 18:25:31 +00:00
|
|
|
, udev
|
2024-05-15 15:35:15 +00:00
|
|
|
, valgrind-light
|
|
|
|
, vulkan-loader
|
|
|
|
, wayland
|
|
|
|
, wayland-protocols
|
|
|
|
, wayland-scanner
|
|
|
|
, xorg
|
|
|
|
, zstd
|
|
|
|
, withValgrind ?
|
|
|
|
lib.meta.availableOn stdenv.hostPlatform valgrind-light
|
|
|
|
&& !valgrind-light.meta.broken
|
|
|
|
, withLibunwind ? lib.meta.availableOn stdenv.hostPlatform libunwind
|
|
|
|
, enableGalliumNine ? stdenv.isLinux
|
|
|
|
, enableOSMesa ? stdenv.isLinux
|
|
|
|
, enableOpenCL ? stdenv.isLinux && stdenv.isx86_64
|
|
|
|
, enablePatentEncumberedCodecs ? true
|
|
|
|
|
|
|
|
, galliumDrivers ?
|
|
|
|
if stdenv.isLinux
|
|
|
|
then [
|
|
|
|
"d3d12" # WSL emulated GPU (aka Dozen)
|
|
|
|
"kmsro" # special "render only" driver for GPUs without a display controller
|
|
|
|
"nouveau" # Nvidia
|
|
|
|
"radeonsi" # new AMD (GCN+)
|
|
|
|
"r300" # very old AMD
|
|
|
|
"r600" # less old AMD
|
|
|
|
"swrast" # software renderer (aka LLVMPipe)
|
|
|
|
"svga" # VMWare virtualized GPU
|
|
|
|
"virgl" # QEMU virtualized GPU (aka VirGL)
|
|
|
|
"zink" # generic OpenGL over Vulkan, experimental
|
|
|
|
] ++ lib.optionals (stdenv.isAarch64 || stdenv.isAarch32) [
|
|
|
|
"etnaviv" # Vivante GPU designs (mostly NXP/Marvell SoCs)
|
|
|
|
"freedreno" # Qualcomm Adreno (all Qualcomm SoCs)
|
|
|
|
"lima" # ARM Mali 4xx
|
|
|
|
"panfrost" # ARM Mali Midgard and up (T/G series)
|
|
|
|
"vc4" # Broadcom VC4 (Raspberry Pi 0-3)
|
|
|
|
] ++ lib.optionals stdenv.isAarch64 [
|
|
|
|
"tegra" # Nvidia Tegra SoCs
|
|
|
|
"v3d" # Broadcom VC5 (Raspberry Pi 4)
|
|
|
|
] ++ lib.optionals stdenv.hostPlatform.isx86 [
|
|
|
|
"iris" # new Intel, could work on non-x86 with PCIe cards, but doesn't build as of 22.3.4
|
|
|
|
"crocus" # Intel legacy, x86 only
|
|
|
|
"i915" # Intel extra legacy, x86 only
|
|
|
|
]
|
|
|
|
else [ "auto" ]
|
|
|
|
, vulkanDrivers ?
|
|
|
|
if stdenv.isLinux
|
|
|
|
then [
|
|
|
|
"amd" # AMD (aka RADV)
|
|
|
|
"microsoft-experimental" # WSL virtualized GPU (aka DZN/Dozen)
|
|
|
|
"nouveau-experimental" # Nouveau (aka NVK)
|
|
|
|
"swrast" # software renderer (aka Lavapipe)
|
|
|
|
] ++ lib.optionals (stdenv.hostPlatform.isAarch -> lib.versionAtLeast stdenv.hostPlatform.parsed.cpu.version "6") [
|
|
|
|
# QEMU virtualized GPU (aka VirGL)
|
|
|
|
# Requires ATOMIC_INT_LOCK_FREE == 2.
|
|
|
|
"virtio"
|
|
|
|
] ++ lib.optionals stdenv.isAarch64 [
|
|
|
|
"broadcom" # Broadcom VC5 (Raspberry Pi 4, aka V3D)
|
|
|
|
"freedreno" # Qualcomm Adreno (all Qualcomm SoCs)
|
|
|
|
"imagination-experimental" # PowerVR Rogue (currently N/A)
|
|
|
|
"panfrost" # ARM Mali Midgard and up (T/G series)
|
|
|
|
] ++ lib.optionals stdenv.hostPlatform.isx86 [
|
|
|
|
"intel" # Intel (aka ANV), could work on non-x86 with PCIe cards, but doesn't build
|
|
|
|
"intel_hasvk" # Intel Haswell/Broadwell, "legacy" Vulkan driver (https://www.phoronix.com/news/Intel-HasVK-Drop-Dead-Code)
|
|
|
|
]
|
|
|
|
else [ "auto" ]
|
|
|
|
, eglPlatforms ? [ "x11" ] ++ lib.optionals stdenv.isLinux [ "wayland" ]
|
|
|
|
, vulkanLayers ? lib.optionals (!stdenv.isDarwin) [ # No Vulkan support on Darwin
|
|
|
|
"device-select"
|
|
|
|
"overlay"
|
|
|
|
"intel-nullhw"
|
|
|
|
]
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
# When updating this package, please verify at least these build (assuming x86_64-linux):
|
|
|
|
# nix build .#mesa .#pkgsi686Linux.mesa .#pkgsCross.aarch64-multiplatform.mesa .#pkgsMusl.mesa
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
let
|
2024-05-15 15:35:15 +00:00
|
|
|
version = "24.0.6";
|
|
|
|
hash = "sha256-i3qS2+ZGjBjyODcAE1tf6d6DbN8MyP19uuPHEQI31gQ=";
|
2023-07-15 17:15:38 +00:00
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
# Release calendar: https://www.mesa3d.org/release-calendar.html
|
|
|
|
# Release frequency: https://www.mesa3d.org/releasing.html#schedule
|
2023-03-27 19:17:25 +00:00
|
|
|
branch = lib.versions.major version;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-01-20 10:41:00 +00:00
|
|
|
withLibdrm = lib.meta.availableOn stdenv.hostPlatform libdrm;
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
haveWayland = lib.elem "wayland" eglPlatforms;
|
|
|
|
haveZink = lib.elem "zink" galliumDrivers;
|
|
|
|
haveDozen = (lib.elem "d3d12" galliumDrivers) || (lib.elem "microsoft-experimental" vulkanDrivers);
|
2024-02-29 20:09:43 +00:00
|
|
|
|
|
|
|
rustDeps = [
|
|
|
|
{
|
|
|
|
pname = "proc-macro2";
|
|
|
|
version = "1.0.70";
|
|
|
|
hash = "sha256-e4ZgyZUTu5nAtaH5QVkLelqJQX/XPj/rWkzf/g2c+1g=";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
pname = "quote";
|
|
|
|
version = "1.0.33";
|
|
|
|
hash = "sha256-VWRCZJO0/DJbNu0/V9TLaqlwMot65YjInWT9VWg57DY=";
|
|
|
|
}
|
|
|
|
{
|
2024-05-15 15:35:15 +00:00
|
|
|
pname = "syn";
|
2024-02-29 20:09:43 +00:00
|
|
|
version = "2.0.39";
|
|
|
|
hash = "sha256-Mjen2L/omhVbhU/+Ao65mogs3BP3fY+Bodab3uU63EI=";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
pname = "unicode-ident";
|
|
|
|
version = "1.0.12";
|
|
|
|
hash = "sha256-KX8NqYYw6+rGsoR9mdZx8eT1HIPEUUyxErdk2H/Rlj8=";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
copyRustDep = dep: ''
|
|
|
|
cp -R --no-preserve=mode,ownership ${fetchCrate dep} subprojects/${dep.pname}-${dep.version}
|
|
|
|
cp -R subprojects/packagefiles/${dep.pname}/* subprojects/${dep.pname}-${dep.version}/
|
|
|
|
'';
|
|
|
|
|
|
|
|
copyRustDeps = lib.concatStringsSep "\n" (builtins.map copyRustDep rustDeps);
|
|
|
|
|
2021-04-26 19:14:03 +00:00
|
|
|
self = stdenv.mkDerivation {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "mesa";
|
|
|
|
inherit version;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
urls = [
|
2022-10-30 15:09:59 +00:00
|
|
|
"https://archive.mesa3d.org/mesa-${version}.tar.xz"
|
2020-06-18 07:06:33 +00:00
|
|
|
"https://mesa.freedesktop.org/archive/mesa-${version}.tar.xz"
|
2020-04-24 23:36:52 +00:00
|
|
|
"ftp://ftp.freedesktop.org/pub/mesa/mesa-${version}.tar.xz"
|
|
|
|
"ftp://ftp.freedesktop.org/pub/mesa/${version}/mesa-${version}.tar.xz"
|
|
|
|
"ftp://ftp.freedesktop.org/pub/mesa/older-versions/${branch}.x/${version}/mesa-${version}.tar.xz"
|
|
|
|
];
|
2023-03-27 19:17:25 +00:00
|
|
|
inherit hash;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
2021-12-06 16:07:01 +00:00
|
|
|
./opencl.patch
|
2021-01-05 17:05:55 +00:00
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
postPatch = ''
|
2021-09-18 10:52:07 +00:00
|
|
|
patchShebangs .
|
|
|
|
|
2020-09-25 04:45:31 +00:00
|
|
|
# The drirc.d directory cannot be installed to $drivers as that would cause a cyclic dependency:
|
|
|
|
substituteInPlace src/util/xmlconfig.c --replace \
|
2021-08-05 21:33:18 +00:00
|
|
|
'DATADIR "/drirc.d"' '"${placeholder "out"}/share/drirc.d"'
|
2020-09-25 04:45:31 +00:00
|
|
|
substituteInPlace src/util/meson.build --replace \
|
2021-08-05 21:33:18 +00:00
|
|
|
"get_option('datadir')" "'${placeholder "out"}/share'"
|
2022-10-30 15:09:59 +00:00
|
|
|
substituteInPlace src/amd/vulkan/meson.build --replace \
|
|
|
|
"get_option('datadir')" "'${placeholder "out"}/share'"
|
2024-02-29 20:09:43 +00:00
|
|
|
|
|
|
|
${copyRustDeps}
|
2020-06-18 07:06:33 +00:00
|
|
|
'';
|
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
outputs = [
|
|
|
|
"out" "dev" "drivers"
|
|
|
|
] ++ lib.optionals enableOSMesa [
|
|
|
|
"osmesa"
|
|
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
|
|
"driversdev"
|
|
|
|
] ++ lib.optionals enableOpenCL [
|
|
|
|
"opencl"
|
|
|
|
] ++ lib.optionals haveDozen [
|
2023-02-02 18:25:31 +00:00
|
|
|
# the Dozen drivers depend on libspirv2dxil, but link it statically, and
|
2024-05-15 15:35:15 +00:00
|
|
|
# libspirv2dxil itself is pretty chonky, so relocate it to its own output in
|
|
|
|
# case anything wants to use it at some point
|
|
|
|
"spirv2dxil"
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
# Keep build-ids so drivers can use them for caching, etc.
|
|
|
|
# Also some drivers segfault without this.
|
2023-01-20 10:41:00 +00:00
|
|
|
separateDebugInfo = true;
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
# Needed to discover llvm-config for cross
|
2021-12-06 16:07:01 +00:00
|
|
|
preConfigure = ''
|
|
|
|
PATH=${llvmPackages.libllvm.dev}/bin:$PATH
|
|
|
|
'';
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
mesonFlags = [
|
|
|
|
"--sysconfdir=/etc"
|
2020-09-25 04:45:31 +00:00
|
|
|
"--datadir=${placeholder "drivers"}/share" # Vendor files
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# Don't build in debug mode
|
|
|
|
# https://gitlab.freedesktop.org/mesa/mesa/blob/master/docs/meson.html#L327
|
2024-05-15 15:35:15 +00:00
|
|
|
(lib.mesonBool "b_ndebug" true)
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
(lib.mesonOption "dri-search-path" "${libglvnd.driverLink}/lib/dri")
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
(lib.mesonOption "platforms" (lib.concatStringsSep "," eglPlatforms))
|
|
|
|
(lib.mesonOption "gallium-drivers" (lib.concatStringsSep "," galliumDrivers))
|
|
|
|
(lib.mesonOption "vulkan-drivers" (lib.concatStringsSep "," vulkanDrivers))
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
(lib.mesonOption "dri-drivers-path" "${placeholder "drivers"}/lib/dri")
|
|
|
|
(lib.mesonOption "vdpau-libs-path" "${placeholder "drivers"}/lib/vdpau")
|
|
|
|
(lib.mesonOption "omx-libs-path" "${placeholder "drivers"}/lib/bellagio")
|
|
|
|
(lib.mesonOption "va-libs-path" "${placeholder "drivers"}/lib/dri")
|
|
|
|
(lib.mesonOption "d3d-drivers-path" "${placeholder "drivers"}/lib/d3d")
|
2023-02-02 18:25:31 +00:00
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
(lib.mesonBool "gallium-nine" enableGalliumNine) # Direct3D in Wine
|
|
|
|
(lib.mesonBool "osmesa" enableOSMesa) # used by wine
|
|
|
|
(lib.mesonEnable "microsoft-clc" false) # Only relevant on Windows (OpenCL 1.2 API on top of D3D12)
|
2021-12-06 16:07:01 +00:00
|
|
|
|
|
|
|
# To enable non-mesa gbm backends to be found (e.g. Nvidia)
|
2024-05-15 15:35:15 +00:00
|
|
|
(lib.mesonOption "gbm-backends-path" "${libglvnd.driverLink}/lib/gbm:${placeholder "out"}/lib/gbm")
|
2023-07-15 17:15:38 +00:00
|
|
|
|
|
|
|
# meson auto_features enables these features, but we do not want them
|
2024-05-15 15:35:15 +00:00
|
|
|
(lib.mesonEnable "android-libbacktrace" false)
|
2023-02-02 18:25:31 +00:00
|
|
|
] ++ lib.optionals stdenv.isLinux [
|
2024-05-15 15:35:15 +00:00
|
|
|
(lib.mesonBool "glvnd" true)
|
2023-02-02 18:25:31 +00:00
|
|
|
|
|
|
|
# Enable RT for Intel hardware
|
2023-11-16 04:20:00 +00:00
|
|
|
# https://gitlab.freedesktop.org/mesa/mesa/-/issues/9080
|
|
|
|
(lib.mesonEnable "intel-clc" (stdenv.buildPlatform == stdenv.hostPlatform))
|
2024-01-02 11:29:13 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
# Disable features that are explicitly unsupported on the platform
|
2024-05-15 15:35:15 +00:00
|
|
|
(lib.mesonEnable "gbm" false)
|
|
|
|
(lib.mesonEnable "xlib-lease" false)
|
|
|
|
(lib.mesonEnable "egl" false)
|
|
|
|
(lib.mesonEnable "gallium-vdpau" false)
|
|
|
|
(lib.mesonEnable "gallium-va" false)
|
|
|
|
(lib.mesonEnable "gallium-xa" false)
|
|
|
|
(lib.mesonEnable "lmsensors" false)
|
2023-02-02 18:25:31 +00:00
|
|
|
] ++ lib.optionals enableOpenCL [
|
|
|
|
# Clover, old OpenCL frontend
|
2024-05-15 15:35:15 +00:00
|
|
|
(lib.mesonOption "gallium-opencl" "icd")
|
|
|
|
(lib.mesonBool "opencl-spirv" true)
|
2023-02-02 18:25:31 +00:00
|
|
|
|
|
|
|
# Rusticl, new OpenCL frontend
|
2024-05-15 15:35:15 +00:00
|
|
|
(lib.mesonBool "gallium-rusticl" true)
|
|
|
|
(lib.mesonOption "clang-libdir" "${llvmPackages.clang-unwrapped.lib}/lib")
|
|
|
|
] ++ lib.optionals (!withValgrind) [
|
|
|
|
(lib.mesonEnable "valgrind" false)
|
|
|
|
] ++ lib.optionals (!withLibunwind) [
|
|
|
|
(lib.mesonEnable "libunwind" false)
|
|
|
|
]
|
|
|
|
++ lib.optionals enablePatentEncumberedCodecs [
|
|
|
|
(lib.mesonOption "video-codecs" "all")
|
|
|
|
] ++ lib.optionals (vulkanLayers != []) [
|
|
|
|
(lib.mesonOption "vulkan-layers" (builtins.concatStringsSep "," vulkanLayers))
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = with xorg; [
|
2024-05-15 15:35:15 +00:00
|
|
|
expat
|
|
|
|
glslang
|
|
|
|
libffi
|
|
|
|
libglvnd
|
|
|
|
libvdpau
|
|
|
|
llvmPackages.libllvm
|
|
|
|
openssl
|
2024-01-25 14:12:00 +00:00
|
|
|
zstd
|
2024-05-15 15:35:15 +00:00
|
|
|
] ++ (with xorg; [
|
|
|
|
libX11
|
|
|
|
libXext
|
|
|
|
libXfixes
|
|
|
|
libXrandr
|
|
|
|
libXt
|
|
|
|
libXvMC
|
|
|
|
libpthreadstubs
|
|
|
|
libxcb
|
|
|
|
libxshmfence
|
|
|
|
xorgproto
|
|
|
|
]) ++ lib.optionals withLibunwind [
|
2024-01-25 14:12:00 +00:00
|
|
|
libunwind
|
|
|
|
] ++ [
|
2023-11-16 04:20:00 +00:00
|
|
|
python3Packages.python # for shebang
|
2024-05-15 15:35:15 +00:00
|
|
|
] ++ lib.optionals haveWayland [
|
|
|
|
wayland
|
|
|
|
wayland-protocols
|
|
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
|
|
libomxil-bellagio
|
|
|
|
libva-minimal
|
|
|
|
lm_sensors
|
|
|
|
udev
|
|
|
|
] ++ lib.optionals (lib.meta.availableOn stdenv.hostPlatform elfutils) [
|
|
|
|
elfutils
|
|
|
|
] ++ lib.optionals enableOpenCL [
|
|
|
|
llvmPackages.libclc
|
|
|
|
llvmPackages.clang
|
|
|
|
llvmPackages.clang-unwrapped
|
|
|
|
spirv-llvm-translator
|
|
|
|
] ++ lib.optionals withValgrind [
|
|
|
|
valgrind-light
|
|
|
|
] ++ lib.optionals haveZink [
|
|
|
|
vulkan-loader
|
|
|
|
] ++ lib.optionals haveDozen [
|
|
|
|
directx-headers
|
|
|
|
];
|
|
|
|
|
|
|
|
depsBuildBuild = [
|
|
|
|
pkg-config
|
|
|
|
] ++ lib.optionals (!stdenv.isDarwin) [
|
|
|
|
# Adding this unconditionally makes x86_64-darwin pick up an older
|
|
|
|
# toolchain, as we explicitly call Mesa with 11.0 stdenv, but buildPackages
|
|
|
|
# is still 10.something, and Mesa can't build with that.
|
2024-02-29 20:09:43 +00:00
|
|
|
# FIXME: figure this out, or figure out how to get rid of Mesa on Darwin,
|
|
|
|
# whichever is easier.
|
2024-05-15 15:35:15 +00:00
|
|
|
buildPackages.stdenv.cc
|
|
|
|
];
|
2020-06-18 07:06:33 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
nativeBuildInputs = [
|
2024-05-15 15:35:15 +00:00
|
|
|
meson
|
|
|
|
pkg-config
|
|
|
|
ninja
|
|
|
|
intltool
|
|
|
|
bison
|
|
|
|
flex
|
|
|
|
file
|
|
|
|
python3Packages.python
|
|
|
|
python3Packages.mako
|
|
|
|
python3Packages.ply
|
|
|
|
jdupes
|
|
|
|
glslang
|
|
|
|
rustc
|
|
|
|
rust-bindgen
|
|
|
|
rustPlatform.bindgenHook
|
|
|
|
] ++ lib.optionals haveWayland [
|
|
|
|
wayland-scanner
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = (with xorg; [
|
|
|
|
libXdamage
|
|
|
|
libXxf86vm
|
|
|
|
]) ++ lib.optionals withLibdrm [
|
|
|
|
libdrm
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
OpenGL
|
|
|
|
Xplugin
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
# Some installs don't have any drivers so this directory is never created.
|
|
|
|
mkdir -p $drivers $osmesa
|
2023-02-02 18:25:31 +00:00
|
|
|
'' + lib.optionalString stdenv.isLinux ''
|
2020-04-24 23:36:52 +00:00
|
|
|
mkdir -p $drivers/lib
|
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
if [ -n "$(shopt -s nullglob; echo "$out/lib/libxatracker"*)" -o -n "$(shopt -s nullglob; echo "$out/lib/libvulkan_"*)" ]; then
|
|
|
|
# move gallium-related stuff to $drivers, so $out doesn't depend on LLVM
|
|
|
|
mv -t $drivers/lib \
|
2023-07-15 17:15:38 +00:00
|
|
|
$out/lib/libpowervr_rogue* \
|
2020-06-18 07:06:33 +00:00
|
|
|
$out/lib/libxatracker* \
|
|
|
|
$out/lib/libvulkan_*
|
|
|
|
fi
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
if [ -n "$(shopt -s nullglob; echo "$out"/lib/lib*_mesa*)" ]; then
|
|
|
|
# Move other drivers to a separate output
|
2021-10-06 13:57:05 +00:00
|
|
|
mv -t $drivers/lib $out/lib/lib*_mesa*
|
2020-06-18 07:06:33 +00:00
|
|
|
fi
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# Update search path used by glvnd
|
|
|
|
for js in $drivers/share/glvnd/egl_vendor.d/*.json; do
|
|
|
|
substituteInPlace "$js" --replace '"libEGL_' '"'"$drivers/lib/libEGL_"
|
|
|
|
done
|
|
|
|
|
|
|
|
# Update search path used by Vulkan (it's pointing to $out but
|
|
|
|
# drivers are in $drivers)
|
|
|
|
for js in $drivers/share/vulkan/icd.d/*.json; do
|
|
|
|
substituteInPlace "$js" --replace "$out" "$drivers"
|
|
|
|
done
|
2023-02-02 18:25:31 +00:00
|
|
|
'' + lib.optionalString enableOpenCL ''
|
2021-10-06 13:57:05 +00:00
|
|
|
# Move OpenCL stuff
|
|
|
|
mkdir -p $opencl/lib
|
|
|
|
mv -t "$opencl/lib/" \
|
|
|
|
$out/lib/gallium-pipe \
|
2023-01-20 10:41:00 +00:00
|
|
|
$out/lib/lib*OpenCL*
|
2021-10-06 13:57:05 +00:00
|
|
|
|
2023-01-20 10:41:00 +00:00
|
|
|
# We construct our own .icd files that contain absolute paths.
|
2021-10-06 13:57:05 +00:00
|
|
|
mkdir -p $opencl/etc/OpenCL/vendors/
|
|
|
|
echo $opencl/lib/libMesaOpenCL.so > $opencl/etc/OpenCL/vendors/mesa.icd
|
2023-01-20 10:41:00 +00:00
|
|
|
echo $opencl/lib/libRusticlOpenCL.so > $opencl/etc/OpenCL/vendors/rusticl.icd
|
2020-06-18 07:06:33 +00:00
|
|
|
'' + lib.optionalString enableOSMesa ''
|
|
|
|
# move libOSMesa to $osmesa, as it's relatively big
|
|
|
|
mkdir -p $osmesa/lib
|
|
|
|
mv -t $osmesa/lib/ $out/lib/libOSMesa*
|
2022-11-02 22:02:43 +00:00
|
|
|
'' + lib.optionalString (vulkanLayers != []) ''
|
|
|
|
mv -t $drivers/lib $out/lib/libVkLayer*
|
|
|
|
for js in $drivers/share/vulkan/{im,ex}plicit_layer.d/*.json; do
|
|
|
|
substituteInPlace "$js" --replace '"libVkLayer_' '"'"$drivers/lib/libVkLayer_"
|
|
|
|
done
|
2023-02-02 18:25:31 +00:00
|
|
|
'' + lib.optionalString haveDozen ''
|
|
|
|
mkdir -p $spirv2dxil/{bin,lib}
|
|
|
|
mv -t $spirv2dxil/lib $out/lib/libspirv_to_dxil*
|
|
|
|
mv -t $spirv2dxil/bin $out/bin/spirv2dxil
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
postFixup = lib.optionalString stdenv.isLinux ''
|
2020-04-24 23:36:52 +00:00
|
|
|
# set the default search path for DRI drivers; used e.g. by X server
|
2024-02-29 20:09:43 +00:00
|
|
|
for pc in lib/pkgconfig/{dri,d3d}.pc; do
|
|
|
|
[ -f "$dev/$pc" ] && substituteInPlace "$dev/$pc" --replace "$drivers" "${libglvnd.driverLink}"
|
|
|
|
done
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# remove pkgconfig files for GL/EGL; they are provided by libGL.
|
|
|
|
rm -f $dev/lib/pkgconfig/{gl,egl}.pc
|
|
|
|
|
2021-04-26 19:14:03 +00:00
|
|
|
# Move development files for libraries in $drivers to $driversdev
|
|
|
|
mkdir -p $driversdev/include
|
2021-05-03 20:48:10 +00:00
|
|
|
mv $dev/include/xa_* $dev/include/d3d* -t $driversdev/include || true
|
2021-04-26 19:14:03 +00:00
|
|
|
mkdir -p $driversdev/lib/pkgconfig
|
|
|
|
for pc in lib/pkgconfig/{xatracker,d3d}.pc; do
|
|
|
|
if [ -f "$dev/$pc" ]; then
|
|
|
|
substituteInPlace "$dev/$pc" --replace $out $drivers
|
|
|
|
mv $dev/$pc $driversdev/$pc
|
2020-06-18 07:06:33 +00:00
|
|
|
fi
|
2020-04-24 23:36:52 +00:00
|
|
|
done
|
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
# Don't depend on build python
|
|
|
|
patchShebangs --host --update $out/bin/*
|
|
|
|
|
2022-04-15 01:41:22 +00:00
|
|
|
# NAR doesn't support hard links, so convert them to symlinks to save space.
|
|
|
|
jdupes --hard-links --link-soft --recurse "$drivers"
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
# add RPATH so the drivers can find the moved libgallium and libdricore9
|
|
|
|
# moved here to avoid problems with stripping patchelfed files
|
|
|
|
for lib in $drivers/lib/*.so* $drivers/lib/*/*.so*; do
|
|
|
|
if [[ ! -L "$lib" ]]; then
|
|
|
|
patchelf --set-rpath "$(patchelf --print-rpath $lib):$drivers/lib" "$lib"
|
|
|
|
fi
|
|
|
|
done
|
2023-04-12 12:48:02 +00:00
|
|
|
# add RPATH here so Zink can find libvulkan.so
|
|
|
|
${lib.optionalString haveZink ''
|
|
|
|
patchelf --add-rpath ${vulkan-loader}/lib $drivers/lib/dri/zink_dri.so
|
|
|
|
''}
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = toString (
|
|
|
|
lib.optionals stdenv.isDarwin [
|
|
|
|
"-fno-common"
|
|
|
|
] ++ lib.optionals enableOpenCL [
|
|
|
|
"-UPIPE_SEARCH_DIR"
|
|
|
|
"-DPIPE_SEARCH_DIR=\"${placeholder "opencl"}/lib/gallium-pipe\""
|
2023-03-04 12:14:45 +00:00
|
|
|
]);
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
inherit (libglvnd) driverLink;
|
2021-07-17 21:14:59 +00:00
|
|
|
inherit llvmPackages;
|
2021-04-26 19:14:03 +00:00
|
|
|
|
2023-01-20 10:41:00 +00:00
|
|
|
libdrm = if withLibdrm then libdrm else null;
|
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
tests = lib.optionalAttrs stdenv.isLinux {
|
|
|
|
devDoesNotDependOnLLVM = stdenv.mkDerivation {
|
|
|
|
name = "mesa-dev-does-not-depend-on-llvm";
|
|
|
|
buildCommand = ''
|
|
|
|
echo ${self.dev} >>$out
|
|
|
|
'';
|
|
|
|
disallowedRequisites = [ llvmPackages.llvm self.drivers ];
|
|
|
|
};
|
2021-04-26 19:14:03 +00:00
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
meta = {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "An open source 3D graphics library";
|
|
|
|
longDescription = ''
|
|
|
|
The Mesa project began as an open-source implementation of the OpenGL
|
|
|
|
specification - a system for rendering interactive 3D graphics. Over the
|
|
|
|
years the project has grown to implement more graphics APIs, including
|
|
|
|
OpenGL ES (versions 1, 2, 3), OpenCL, OpenMAX, VDPAU, VA API, XvMC, and
|
|
|
|
Vulkan. A variety of device drivers allows the Mesa libraries to be used
|
|
|
|
in many different environments ranging from software emulation to
|
|
|
|
complete hardware acceleration for modern GPUs.
|
|
|
|
'';
|
|
|
|
homepage = "https://www.mesa3d.org/";
|
|
|
|
changelog = "https://www.mesa3d.org/relnotes/${version}.html";
|
2024-05-15 15:35:15 +00:00
|
|
|
license = with lib.licenses; [ mit ]; # X11 variant, in most files
|
|
|
|
platforms = lib.platforms.mesaPlatforms;
|
|
|
|
maintainers = with lib.maintainers; [ primeos vcunat ]; # Help is welcome :)
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2021-04-26 19:14:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
in self
|