2023-05-23 13:06:02 +00:00
|
|
|
{ stdenv, lib, fetchurl, fetchpatch, buildPackages
|
2021-03-25 14:34:08 +00:00
|
|
|
, meson, pkg-config, ninja
|
2021-07-03 15:02:23 +00:00
|
|
|
, intltool, bison, flex, file, python3Packages, wayland-scanner
|
2021-03-25 14:34:08 +00:00
|
|
|
, expat, libdrm, xorg, wayland, wayland-protocols, openssl
|
2023-12-14 11:40:42 +00:00
|
|
|
, llvmPackages, libffi, libomxil-bellagio, libva-minimal
|
2021-03-25 14:34:08 +00:00
|
|
|
, libelf, libvdpau
|
2023-05-27 18:55:54 +00:00
|
|
|
, libglvnd, libunwind, lm_sensors
|
2022-09-21 12:36:02 +00:00
|
|
|
, vulkan-loader, glslang
|
2023-01-28 13:22:42 +00:00
|
|
|
, galliumDrivers ?
|
|
|
|
if stdenv.isLinux then
|
|
|
|
[
|
|
|
|
"d3d12" # WSL emulated GPU (aka Dozen)
|
|
|
|
"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
|
2023-03-15 09:34:23 +00:00
|
|
|
] ++ lib.optionals (stdenv.isAarch64 || stdenv.isAarch32) [
|
2023-01-28 13:22:42 +00:00
|
|
|
"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)
|
2023-03-15 09:34:23 +00:00
|
|
|
"vc4" # Broadcom VC4 (Raspberry Pi 0-3)
|
|
|
|
] ++ lib.optionals stdenv.isAarch64 [
|
2023-01-28 13:22:42 +00:00
|
|
|
"tegra" # Nvidia Tegra SoCs
|
|
|
|
"v3d" # Broadcom VC5 (Raspberry Pi 4)
|
2023-02-03 19:31:30 +00:00
|
|
|
] ++ 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
|
2023-06-26 17:53:20 +00:00
|
|
|
"i915" # Intel extra legacy, x86 only
|
2023-01-28 13:22:42 +00:00
|
|
|
]
|
|
|
|
else [ "auto" ]
|
|
|
|
, vulkanDrivers ?
|
|
|
|
if stdenv.isLinux then
|
|
|
|
[
|
|
|
|
"amd" # AMD (aka RADV)
|
|
|
|
"microsoft-experimental" # WSL virtualized GPU (aka DZN/Dozen)
|
|
|
|
"swrast" # software renderer (aka Lavapipe)
|
2023-01-29 14:13:10 +00:00
|
|
|
]
|
|
|
|
++ lib.optionals (stdenv.hostPlatform.isAarch -> lib.versionAtLeast stdenv.hostPlatform.parsed.cpu.version "6") [
|
|
|
|
# QEMU virtualized GPU (aka VirGL)
|
|
|
|
# Requires ATOMIC_INT_LOCK_FREE == 2.
|
2023-09-29 10:54:32 +00:00
|
|
|
"virtio"
|
2023-01-28 13:22:42 +00:00
|
|
|
]
|
|
|
|
++ 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)
|
|
|
|
]
|
2023-03-05 09:53:44 +00:00
|
|
|
++ 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)
|
2023-01-28 13:22:42 +00:00
|
|
|
]
|
|
|
|
else [ "auto" ]
|
2020-10-26 07:17:14 +00:00
|
|
|
, eglPlatforms ? [ "x11" ] ++ lib.optionals stdenv.isLinux [ "wayland" ]
|
2023-01-28 11:38:19 +00:00
|
|
|
, vulkanLayers ? lib.optionals (!stdenv.isDarwin) [ "device-select" "overlay" "intel-nullhw" ] # No Vulkan support on Darwin
|
2018-08-25 20:53:30 +00:00
|
|
|
, OpenGL, Xplugin
|
2022-04-19 20:46:17 +00:00
|
|
|
, withValgrind ? lib.meta.availableOn stdenv.hostPlatform valgrind-light && !valgrind-light.meta.broken, valgrind-light
|
2024-01-05 01:31:19 +00:00
|
|
|
, withLibunwind ? lib.meta.availableOn stdenv.hostPlatform libunwind
|
2020-05-30 03:29:32 +00:00
|
|
|
, enableGalliumNine ? stdenv.isLinux
|
|
|
|
, enableOSMesa ? stdenv.isLinux
|
2019-07-14 14:42:04 +00:00
|
|
|
, enableOpenCL ? stdenv.isLinux && stdenv.isx86_64
|
2022-10-13 18:55:51 +00:00
|
|
|
, enablePatentEncumberedCodecs ? true
|
2022-02-16 05:16:33 +00:00
|
|
|
, jdupes
|
2023-12-14 11:40:42 +00:00
|
|
|
, rust-bindgen
|
2022-12-02 15:15:42 +00:00
|
|
|
, rustc
|
2023-01-28 08:07:46 +00:00
|
|
|
, spirv-llvm-translator
|
2023-01-28 11:36:16 +00:00
|
|
|
, zstd
|
2023-01-28 13:22:24 +00:00
|
|
|
, directx-headers
|
2023-01-28 19:51:40 +00:00
|
|
|
, udev
|
2013-05-16 15:16:02 +00:00
|
|
|
}:
|
2004-06-09 17:53:30 +00:00
|
|
|
|
2013-05-16 15:16:02 +00:00
|
|
|
/** Packaging design:
|
2018-03-05 13:53:38 +00:00
|
|
|
- The basic mesa ($out) contains headers and libraries (GLU is in libGLU now).
|
2014-01-28 10:34:05 +00:00
|
|
|
This or the mesa attribute (which also contains GLU) are small (~ 2 MB, mostly headers)
|
2013-05-16 15:16:02 +00:00
|
|
|
and are designed to be the buildInput of other packages.
|
2015-02-22 18:11:38 +00:00
|
|
|
- DRI drivers are compiled into $drivers output, which is much bigger and
|
|
|
|
depends on LLVM. These should be searched at runtime in
|
|
|
|
"/run/opengl-driver{,-32}/lib/*" and so are kind-of impure (given by NixOS).
|
2013-05-16 15:16:02 +00:00
|
|
|
(I suppose on non-NixOS one would create the appropriate symlinks from there.)
|
2014-01-28 10:34:05 +00:00
|
|
|
- libOSMesa is in $osmesa (~4 MB)
|
2013-05-16 15:16:02 +00:00
|
|
|
*/
|
|
|
|
|
2013-01-28 16:38:42 +00:00
|
|
|
let
|
2024-02-03 06:06:28 +00:00
|
|
|
version = "23.3.5";
|
|
|
|
hash = "sha256-acyxJ4ZB/1utccoPhmGIrrGpKq3E27nTX1CuvsW4tQ8=";
|
2023-05-27 18:51:53 +00:00
|
|
|
|
2020-05-28 11:53:00 +00:00
|
|
|
# Release calendar: https://www.mesa3d.org/release-calendar.html
|
|
|
|
# Release frequency: https://www.mesa3d.org/releasing.html#schedule
|
2023-02-23 17:42:52 +00:00
|
|
|
branch = lib.versions.major version;
|
2013-10-05 19:18:07 +00:00
|
|
|
|
2022-12-09 15:55:06 +00:00
|
|
|
withLibdrm = lib.meta.availableOn stdenv.hostPlatform libdrm;
|
|
|
|
|
2023-01-28 13:22:24 +00:00
|
|
|
haveWayland = lib.elem "wayland" eglPlatforms;
|
|
|
|
haveZink = lib.elem "zink" galliumDrivers;
|
|
|
|
haveDozen = (lib.elem "d3d12" galliumDrivers) || (lib.elem "microsoft-experimental" vulkanDrivers);
|
2021-04-05 09:22:30 +00:00
|
|
|
self = stdenv.mkDerivation {
|
2019-06-12 21:18:19 +00:00
|
|
|
pname = "mesa";
|
|
|
|
inherit version;
|
2010-04-29 14:57:02 +00:00
|
|
|
|
2019-09-26 12:13:51 +00:00
|
|
|
src = fetchurl {
|
2015-01-24 21:37:16 +00:00
|
|
|
urls = [
|
2022-09-21 12:36:02 +00:00
|
|
|
"https://archive.mesa3d.org/mesa-${version}.tar.xz"
|
2020-05-28 11:53:00 +00:00
|
|
|
"https://mesa.freedesktop.org/archive/mesa-${version}.tar.xz"
|
2017-03-07 20:48:18 +00:00
|
|
|
"ftp://ftp.freedesktop.org/pub/mesa/mesa-${version}.tar.xz"
|
2015-03-28 20:57:03 +00:00
|
|
|
"ftp://ftp.freedesktop.org/pub/mesa/${version}/mesa-${version}.tar.xz"
|
2016-08-24 11:35:30 +00:00
|
|
|
"ftp://ftp.freedesktop.org/pub/mesa/older-versions/${branch}.x/${version}/mesa-${version}.tar.xz"
|
2015-01-24 21:37:16 +00:00
|
|
|
];
|
2023-02-23 17:42:52 +00:00
|
|
|
inherit hash;
|
2007-02-26 17:05:27 +00:00
|
|
|
};
|
2010-01-13 12:43:17 +00:00
|
|
|
|
2016-08-24 11:35:30 +00:00
|
|
|
# TODO:
|
|
|
|
# revive ./dricore-gallium.patch when it gets ported (from Ubuntu), as it saved
|
|
|
|
# ~35 MB in $drivers; watch https://launchpad.net/ubuntu/+source/mesa/+changelog
|
2014-01-28 10:34:05 +00:00
|
|
|
patches = [
|
2022-01-13 19:24:33 +00:00
|
|
|
# fixes pkgsMusl.mesa build
|
|
|
|
./musl.patch
|
2021-10-23 11:32:39 +00:00
|
|
|
|
|
|
|
./opencl.patch
|
2023-12-15 14:24:14 +00:00
|
|
|
|
|
|
|
# Backports to fix build
|
|
|
|
# FIXME: remove when applied upstream
|
|
|
|
|
2023-12-07 18:02:15 +00:00
|
|
|
# Fix build on macOS
|
2023-12-15 14:24:14 +00:00
|
|
|
./backports/0001-dri-added-build-dependencies-for-systems-using-non-s.patch
|
|
|
|
./backports/0002-util-Update-util-libdrm.h-stubs-to-allow-loader.c-to.patch
|
|
|
|
./backports/0003-glx-fix-automatic-zink-fallback-loading-between-hw-a.patch
|
2020-12-03 19:00:06 +00:00
|
|
|
];
|
2013-05-16 15:16:02 +00:00
|
|
|
|
2020-05-27 14:41:25 +00:00
|
|
|
postPatch = ''
|
2021-07-15 09:44:16 +00:00
|
|
|
patchShebangs .
|
|
|
|
|
2020-06-06 14:27:09 +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-07-23 21:24:41 +00:00
|
|
|
'DATADIR "/drirc.d"' '"${placeholder "out"}/share/drirc.d"'
|
2020-06-06 14:27:09 +00:00
|
|
|
substituteInPlace src/util/meson.build --replace \
|
2021-07-23 21:24:41 +00:00
|
|
|
"get_option('datadir')" "'${placeholder "out"}/share'"
|
2022-10-02 03:46:46 +00:00
|
|
|
substituteInPlace src/amd/vulkan/meson.build --replace \
|
|
|
|
"get_option('datadir')" "'${placeholder "out"}/share'"
|
2020-05-27 14:41:25 +00:00
|
|
|
'';
|
|
|
|
|
2021-04-05 09:22:30 +00:00
|
|
|
outputs = [ "out" "dev" "drivers" ]
|
|
|
|
++ lib.optional enableOSMesa "osmesa"
|
2019-07-14 14:42:04 +00:00
|
|
|
++ lib.optional stdenv.isLinux "driversdev"
|
2023-01-28 13:22:24 +00:00
|
|
|
++ lib.optional enableOpenCL "opencl"
|
|
|
|
# the Dozen drivers depend on libspirv2dxil, but link it statically, and
|
|
|
|
# libspirv2dxil itself is pretty chonky, so relocate it to its own output
|
|
|
|
# in case anything wants to use it at some point
|
|
|
|
++ lib.optional haveDozen "spirv2dxil";
|
2013-05-16 15:16:02 +00:00
|
|
|
|
2022-12-23 14:03:47 +00:00
|
|
|
# FIXME: this fixes rusticl/iris segfaulting on startup, _somehow_.
|
|
|
|
# Needs more investigating.
|
|
|
|
separateDebugInfo = true;
|
|
|
|
|
2021-09-19 19:57:33 +00:00
|
|
|
preConfigure = ''
|
|
|
|
PATH=${llvmPackages.libllvm.dev}/bin:$PATH
|
|
|
|
'';
|
|
|
|
|
2016-08-24 11:35:30 +00:00
|
|
|
# TODO: Figure out how to enable opencl without having a runtime dependency on clang
|
2019-03-26 23:41:50 +00:00
|
|
|
mesonFlags = [
|
|
|
|
"--sysconfdir=/etc"
|
2020-06-06 14:27:09 +00:00
|
|
|
"--datadir=${placeholder "drivers"}/share" # Vendor files
|
2019-03-26 23:41:50 +00:00
|
|
|
|
|
|
|
# Don't build in debug mode
|
|
|
|
# https://gitlab.freedesktop.org/mesa/mesa/blob/master/docs/meson.html#L327
|
|
|
|
"-Db_ndebug=true"
|
|
|
|
|
|
|
|
"-Ddri-search-path=${libglvnd.driverLink}/lib/dri"
|
|
|
|
|
2023-01-26 17:31:02 +00:00
|
|
|
"-Dplatforms=${lib.concatStringsSep "," eglPlatforms}"
|
|
|
|
"-Dgallium-drivers=${lib.concatStringsSep "," galliumDrivers}"
|
|
|
|
"-Dvulkan-drivers=${lib.concatStringsSep "," vulkanDrivers}"
|
2019-03-26 23:41:50 +00:00
|
|
|
|
|
|
|
"-Ddri-drivers-path=${placeholder "drivers"}/lib/dri"
|
|
|
|
"-Dvdpau-libs-path=${placeholder "drivers"}/lib/vdpau"
|
|
|
|
"-Domx-libs-path=${placeholder "drivers"}/lib/bellagio"
|
|
|
|
"-Dva-libs-path=${placeholder "drivers"}/lib/dri"
|
|
|
|
"-Dd3d-drivers-path=${placeholder "drivers"}/lib/d3d"
|
2023-01-28 13:22:24 +00:00
|
|
|
|
2023-01-26 17:31:02 +00:00
|
|
|
"-Dgallium-nine=${lib.boolToString enableGalliumNine}" # Direct3D in Wine
|
|
|
|
"-Dosmesa=${lib.boolToString enableOSMesa}" # used by wine
|
2021-03-25 14:34:08 +00:00
|
|
|
"-Dmicrosoft-clc=disabled" # Only relevant on Windows (OpenCL 1.2 API on top of D3D12)
|
2021-10-16 07:28:10 +00:00
|
|
|
|
|
|
|
# To enable non-mesa gbm backends to be found (e.g. Nvidia)
|
|
|
|
"-Dgbm-backends-path=${libglvnd.driverLink}/lib/gbm:${placeholder "out"}/lib/gbm"
|
2023-05-27 18:55:54 +00:00
|
|
|
|
|
|
|
# meson auto_features enables these features, but we do not want them
|
|
|
|
"-Dandroid-libbacktrace=disabled"
|
|
|
|
|
2023-01-26 17:31:02 +00:00
|
|
|
] ++ lib.optionals stdenv.isLinux [
|
2019-03-26 23:41:50 +00:00
|
|
|
"-Dglvnd=true"
|
2023-01-28 13:20:49 +00:00
|
|
|
|
|
|
|
# Enable RT for Intel hardware
|
2023-05-23 13:06:02 +00:00
|
|
|
# https://gitlab.freedesktop.org/mesa/mesa/-/issues/9080
|
|
|
|
(lib.mesonEnable "intel-clc" (stdenv.buildPlatform == stdenv.hostPlatform))
|
2023-12-05 00:23:44 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
# Disable features that are explicitly unsupported on the platform
|
|
|
|
"-Dgbm=disabled"
|
|
|
|
"-Dxlib-lease=disabled"
|
|
|
|
"-Degl=disabled"
|
|
|
|
"-Dgallium-vdpau=disabled"
|
|
|
|
"-Dgallium-va=disabled"
|
|
|
|
"-Dgallium-xa=disabled"
|
|
|
|
"-Dlmsensors=disabled"
|
2023-01-26 17:31:02 +00:00
|
|
|
] ++ lib.optionals enableOpenCL [
|
2023-01-28 13:21:49 +00:00
|
|
|
# Clover, old OpenCL frontend
|
|
|
|
"-Dgallium-opencl=icd"
|
|
|
|
"-Dopencl-spirv=true"
|
|
|
|
|
|
|
|
# Rusticl, new OpenCL frontend
|
2022-12-02 15:15:42 +00:00
|
|
|
"-Dgallium-rusticl=true" "-Drust_std=2021"
|
2019-07-14 14:42:04 +00:00
|
|
|
"-Dclang-libdir=${llvmPackages.clang-unwrapped.lib}/lib"
|
2023-06-08 13:49:41 +00:00
|
|
|
] ++ lib.optionals (!withValgrind) [
|
|
|
|
"-Dvalgrind=disabled"
|
2024-01-05 01:31:19 +00:00
|
|
|
] ++ lib.optionals (!withLibunwind) [
|
|
|
|
"-Dlibunwind=disabled"
|
2023-01-26 17:31:02 +00:00
|
|
|
] ++ lib.optional enablePatentEncumberedCodecs
|
2022-10-16 17:30:10 +00:00
|
|
|
"-Dvideo-codecs=h264dec,h264enc,h265dec,h265enc,vc1dec"
|
2023-01-26 17:31:02 +00:00
|
|
|
++ lib.optional (vulkanLayers != []) "-D vulkan-layers=${builtins.concatStringsSep "," vulkanLayers}";
|
2015-03-28 20:57:03 +00:00
|
|
|
|
2013-05-16 15:16:02 +00:00
|
|
|
buildInputs = with xorg; [
|
2023-05-23 13:06:02 +00:00
|
|
|
expat glslang llvmPackages.libllvm libglvnd xorgproto
|
2018-09-21 18:25:12 +00:00
|
|
|
libX11 libXext libxcb libXt libXfixes libxshmfence libXrandr
|
2018-08-25 20:53:30 +00:00
|
|
|
libffi libvdpau libelf libXvMC
|
2018-12-09 15:18:34 +00:00
|
|
|
libpthreadstubs openssl /*or another sha1 provider*/
|
2024-01-05 01:31:19 +00:00
|
|
|
zstd
|
|
|
|
] ++ lib.optionals withLibunwind [
|
|
|
|
libunwind
|
|
|
|
] ++ [
|
2023-10-05 03:34:10 +00:00
|
|
|
python3Packages.python # for shebang
|
2023-01-28 13:22:24 +00:00
|
|
|
] ++ lib.optionals haveWayland [ wayland wayland-protocols ]
|
2023-05-27 18:55:54 +00:00
|
|
|
++ lib.optionals stdenv.isLinux [ libomxil-bellagio libva-minimal udev lm_sensors ]
|
2023-12-14 11:40:42 +00:00
|
|
|
++ lib.optionals enableOpenCL [ llvmPackages.libclc llvmPackages.clang llvmPackages.clang-unwrapped spirv-llvm-translator ]
|
2021-05-08 02:06:09 +00:00
|
|
|
++ lib.optional withValgrind valgrind-light
|
2023-01-28 13:22:24 +00:00
|
|
|
++ lib.optional haveZink vulkan-loader
|
|
|
|
++ lib.optional haveDozen directx-headers;
|
2010-04-29 14:57:02 +00:00
|
|
|
|
2023-05-23 13:06:02 +00:00
|
|
|
depsBuildBuild = [ pkg-config ]
|
|
|
|
++ lib.optional enableOpenCL buildPackages.stdenv.cc;
|
2020-05-27 14:41:25 +00:00
|
|
|
|
2019-03-26 23:41:50 +00:00
|
|
|
nativeBuildInputs = [
|
2021-03-25 14:34:08 +00:00
|
|
|
meson pkg-config ninja
|
2019-03-26 23:41:50 +00:00
|
|
|
intltool bison flex file
|
2023-02-19 17:28:43 +00:00
|
|
|
python3Packages.python python3Packages.mako python3Packages.ply
|
2022-09-21 12:36:02 +00:00
|
|
|
jdupes glslang
|
2023-12-14 11:40:42 +00:00
|
|
|
] ++ lib.optionals enableOpenCL [ rust-bindgen rustc ]
|
2023-05-23 13:06:02 +00:00
|
|
|
++ lib.optional haveWayland wayland-scanner;
|
2019-03-26 23:41:50 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = with xorg; [
|
|
|
|
libXdamage libXxf86vm
|
2023-01-26 17:31:02 +00:00
|
|
|
] ++ lib.optional withLibdrm libdrm
|
|
|
|
++ lib.optionals stdenv.isDarwin [ OpenGL Xplugin ];
|
2019-03-26 23:41:50 +00:00
|
|
|
|
2015-02-22 18:11:38 +00:00
|
|
|
doCheck = false;
|
2013-05-16 15:16:02 +00:00
|
|
|
|
2019-01-05 05:25:48 +00:00
|
|
|
postInstall = ''
|
|
|
|
# Some installs don't have any drivers so this directory is never created.
|
2019-06-29 03:46:55 +00:00
|
|
|
mkdir -p $drivers $osmesa
|
2023-01-26 17:31:02 +00:00
|
|
|
'' + lib.optionalString stdenv.isLinux ''
|
2019-03-26 23:41:50 +00:00
|
|
|
mkdir -p $drivers/lib
|
|
|
|
|
2020-05-30 03:29:32 +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-05-27 18:55:54 +00:00
|
|
|
$out/lib/libpowervr_rogue* \
|
2020-05-30 03:29:32 +00:00
|
|
|
$out/lib/libxatracker* \
|
|
|
|
$out/lib/libvulkan_*
|
|
|
|
fi
|
2016-10-05 22:33:10 +00:00
|
|
|
|
2020-05-30 03:29:32 +00:00
|
|
|
if [ -n "$(shopt -s nullglob; echo "$out"/lib/lib*_mesa*)" ]; then
|
|
|
|
# Move other drivers to a separate output
|
2019-07-14 14:42:04 +00:00
|
|
|
mv -t $drivers/lib $out/lib/lib*_mesa*
|
2020-05-30 03:29:32 +00:00
|
|
|
fi
|
2013-11-17 09:53:41 +00:00
|
|
|
|
2018-03-17 15:44:40 +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
|
2019-06-29 03:46:55 +00:00
|
|
|
|
2017-01-27 11:51:16 +00:00
|
|
|
# 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-01-26 17:31:02 +00:00
|
|
|
'' + lib.optionalString enableOpenCL ''
|
2019-07-14 14:42:04 +00:00
|
|
|
# Move OpenCL stuff
|
|
|
|
mkdir -p $opencl/lib
|
|
|
|
mv -t "$opencl/lib/" \
|
|
|
|
$out/lib/gallium-pipe \
|
2022-12-02 15:15:42 +00:00
|
|
|
$out/lib/lib*OpenCL*
|
2019-07-14 14:42:04 +00:00
|
|
|
|
2022-12-02 15:15:42 +00:00
|
|
|
# We construct our own .icd files that contain absolute paths.
|
2019-07-14 14:42:04 +00:00
|
|
|
mkdir -p $opencl/etc/OpenCL/vendors/
|
|
|
|
echo $opencl/lib/libMesaOpenCL.so > $opencl/etc/OpenCL/vendors/mesa.icd
|
2022-12-02 15:15:42 +00:00
|
|
|
echo $opencl/lib/libRusticlOpenCL.so > $opencl/etc/OpenCL/vendors/rusticl.icd
|
2020-05-30 03:29:32 +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-10-16 17:30:10 +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-01-28 13:22:24 +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
|
2015-04-14 20:41:22 +00:00
|
|
|
'';
|
2013-05-22 15:09:00 +00:00
|
|
|
|
2023-01-26 17:31:02 +00:00
|
|
|
postFixup = lib.optionalString stdenv.isLinux ''
|
2019-03-26 23:41:50 +00:00
|
|
|
# set the default search path for DRI drivers; used e.g. by X server
|
2024-02-03 09:32:38 +00:00
|
|
|
for pc in lib/pkgconfig/{dri,d3d}.pc; do
|
|
|
|
[ -f "$dev/$pc" ] && substituteInPlace "$dev/$pc" --replace "$drivers" "${libglvnd.driverLink}"
|
|
|
|
done
|
2019-03-26 23:41:50 +00:00
|
|
|
|
|
|
|
# remove pkgconfig files for GL/EGL; they are provided by libGL.
|
2019-10-22 22:43:25 +00:00
|
|
|
rm -f $dev/lib/pkgconfig/{gl,egl}.pc
|
2019-03-26 23:41:50 +00:00
|
|
|
|
2021-04-05 09:22:30 +00:00
|
|
|
# Move development files for libraries in $drivers to $driversdev
|
|
|
|
mkdir -p $driversdev/include
|
2021-04-28 20:29:34 +00:00
|
|
|
mv $dev/include/xa_* $dev/include/d3d* -t $driversdev/include || true
|
2021-04-05 09:22:30 +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-05-30 03:29:32 +00:00
|
|
|
fi
|
2019-03-26 23:41:50 +00:00
|
|
|
done
|
|
|
|
|
2023-10-05 03:34:10 +00:00
|
|
|
# Don't depend on build python
|
|
|
|
patchShebangs --host --update $out/bin/*
|
|
|
|
|
2022-02-28 20:25:21 +00:00
|
|
|
# NAR doesn't support hard links, so convert them to symlinks to save space.
|
2022-03-30 22:32:40 +00:00
|
|
|
jdupes --hard-links --link-soft --recurse "$drivers"
|
2022-02-16 05:16:33 +00:00
|
|
|
|
2015-04-14 20:41:22 +00:00
|
|
|
# add RPATH so the drivers can find the moved libgallium and libdricore9
|
|
|
|
# moved here to avoid problems with stripping patchelfed files
|
2013-05-16 15:16:02 +00:00
|
|
|
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-05 18:57:42 +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
|
|
|
|
''}
|
2013-05-16 15:16:02 +00:00
|
|
|
'';
|
2011-02-18 09:16:11 +00:00
|
|
|
|
2023-02-20 15:36:06 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = toString (lib.optionals stdenv.isDarwin [ "-fno-common" ] ++ lib.optionals enableOpenCL [
|
2019-07-14 14:42:04 +00:00
|
|
|
"-UPIPE_SEARCH_DIR"
|
|
|
|
"-DPIPE_SEARCH_DIR=\"${placeholder "opencl"}/lib/gallium-pipe\""
|
2023-02-20 15:36:06 +00:00
|
|
|
]);
|
2019-06-29 03:46:55 +00:00
|
|
|
|
2018-03-17 15:44:40 +00:00
|
|
|
passthru = {
|
|
|
|
inherit (libglvnd) driverLink;
|
2021-07-10 02:19:27 +00:00
|
|
|
inherit llvmPackages;
|
2021-04-05 09:22:30 +00:00
|
|
|
|
2022-12-09 15:55:06 +00:00
|
|
|
libdrm = if withLibdrm then libdrm else null;
|
|
|
|
|
2022-02-26 17:43:17 +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-05 09:22:30 +00:00
|
|
|
};
|
2018-03-17 15:44:40 +00:00
|
|
|
};
|
2010-04-29 14:57:02 +00:00
|
|
|
|
2023-01-26 17:31:02 +00:00
|
|
|
meta = with lib; {
|
2020-03-11 13:39:20 +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";
|
2015-04-14 20:41:22 +00:00
|
|
|
license = licenses.mit; # X11 variant, in most files
|
2019-05-09 01:46:31 +00:00
|
|
|
platforms = platforms.mesaPlatforms;
|
2020-05-28 11:53:00 +00:00
|
|
|
maintainers = with maintainers; [ primeos vcunat ]; # Help is welcome :)
|
2007-11-05 23:59:55 +00:00
|
|
|
};
|
2021-04-05 09:22:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
in self
|