2024-05-15 15:35:15 +00:00
|
|
|
{ lib
|
|
|
|
, bison
|
|
|
|
, buildPackages
|
|
|
|
, directx-headers
|
|
|
|
, elfutils
|
|
|
|
, expat
|
|
|
|
, fetchCrate
|
|
|
|
, fetchurl
|
2024-07-31 10:19:44 +00:00
|
|
|
, fetchpatch
|
2024-05-15 15:35:15 +00:00
|
|
|
, file
|
|
|
|
, flex
|
|
|
|
, glslang
|
|
|
|
, intltool
|
2022-04-15 01:41:22 +00:00
|
|
|
, jdupes
|
2024-05-15 15:35:15 +00:00
|
|
|
, libdrm
|
|
|
|
, libglvnd
|
|
|
|
, libomxil-bellagio
|
|
|
|
, libunwind
|
|
|
|
, libva-minimal
|
|
|
|
, libvdpau
|
|
|
|
, llvmPackages
|
|
|
|
, lm_sensors
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, pkg-config
|
|
|
|
, python3Packages
|
2024-01-13 08:15:51 +00:00
|
|
|
, rust-bindgen
|
2024-06-20 14:57:18 +00:00
|
|
|
, rust-cbindgen
|
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
|
2024-06-20 14:57:18 +00:00
|
|
|
, xcbutilkeysyms
|
2024-05-15 15:35:15 +00:00
|
|
|
, xorg
|
|
|
|
, zstd
|
|
|
|
, enablePatentEncumberedCodecs ? true
|
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
, galliumDrivers ? [
|
2024-05-15 15:35:15 +00:00
|
|
|
"d3d12" # WSL emulated GPU (aka Dozen)
|
2024-06-20 14:57:18 +00:00
|
|
|
"iris" # new Intel (Broadwell+)
|
2024-05-15 15:35:15 +00:00
|
|
|
"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 [
|
|
|
|
"crocus" # Intel legacy, x86 only
|
|
|
|
"i915" # Intel extra legacy, x86 only
|
|
|
|
]
|
2024-07-27 06:49:29 +00:00
|
|
|
, vulkanDrivers ? [
|
2024-05-15 15:35:15 +00:00
|
|
|
"amd" # AMD (aka RADV)
|
2024-06-20 14:57:18 +00:00
|
|
|
"intel" # new Intel (aka ANV)
|
2024-05-15 15:35:15 +00:00
|
|
|
"microsoft-experimental" # WSL virtualized GPU (aka DZN/Dozen)
|
2024-06-20 14:57:18 +00:00
|
|
|
"nouveau" # Nouveau (aka NVK)
|
2024-05-15 15:35:15 +00:00
|
|
|
"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_hasvk" # Intel Haswell/Broadwell, "legacy" Vulkan driver (https://www.phoronix.com/news/Intel-HasVK-Drop-Dead-Code)
|
|
|
|
]
|
2024-07-27 06:49:29 +00:00
|
|
|
, eglPlatforms ? [ "x11" "wayland" ]
|
|
|
|
, vulkanLayers ? [
|
|
|
|
"device-select"
|
|
|
|
"overlay"
|
|
|
|
"intel-nullhw"
|
|
|
|
]
|
|
|
|
, mesa
|
|
|
|
, makeSetupHook
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2024-02-29 20:09:43 +00:00
|
|
|
rustDeps = [
|
2024-06-20 14:57:18 +00:00
|
|
|
{
|
|
|
|
pname = "paste";
|
|
|
|
version = "1.0.14";
|
|
|
|
hash = "sha256-+J1h7New5MEclUBvwDQtTYJCHKKqAEOeQkuKy+g0vEc=";
|
|
|
|
}
|
2024-02-29 20:09:43 +00:00
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
2024-06-20 14:57:18 +00:00
|
|
|
needNativeCLC = !stdenv.buildPlatform.canExecute stdenv.hostPlatform;
|
2024-07-27 06:49:29 +00:00
|
|
|
|
|
|
|
common = import ./common.nix { inherit lib fetchurl; };
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
inherit (common) pname version src meta;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
patches = [
|
2021-12-06 16:07:01 +00:00
|
|
|
./opencl.patch
|
2024-07-31 10:19:44 +00:00
|
|
|
|
|
|
|
# https://gitlab.freedesktop.org/mesa/mesa/-/issues/11533
|
|
|
|
(fetchpatch {
|
|
|
|
name = "ffmpeg.patch";
|
|
|
|
url = "https://gitlab.freedesktop.org/mesa/mesa/-/commit/241f70e5a13bb9c13a168282446ad074e16c3d74.patch";
|
|
|
|
hash = "sha256-Cx7OL8iXGAOuDbCQReCCxSrWYvfZVrGoP0txIKSLTvs=";
|
|
|
|
})
|
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 = [
|
2024-07-27 06:49:29 +00:00
|
|
|
"out" "dev" "drivers" "driversdev" "opencl" "teflon" "osmesa"
|
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"
|
2024-07-27 06:49:29 +00:00
|
|
|
"--datadir=${placeholder "drivers"}/share"
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
# What to build
|
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))
|
2024-07-27 06:49:29 +00:00
|
|
|
(lib.mesonOption "vulkan-layers" (builtins.concatStringsSep "," vulkanLayers))
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
# Make sure we know where to find all the drivers
|
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-07-27 06:49:29 +00:00
|
|
|
# Set search paths for non-Mesa drivers (e.g. Nvidia)
|
|
|
|
(lib.mesonOption "dri-search-path" "${libglvnd.driverLink}/lib/dri")
|
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
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
# Enable glvnd for dynamic libGL dispatch
|
2024-06-20 14:57:18 +00:00
|
|
|
(lib.mesonEnable "glvnd" true)
|
2024-07-27 06:49:29 +00:00
|
|
|
|
|
|
|
(lib.mesonBool "gallium-nine" true) # Direct3D in Wine
|
|
|
|
(lib.mesonBool "osmesa" true) # used by wine
|
|
|
|
(lib.mesonBool "teflon" true) # TensorFlow frontend
|
|
|
|
|
|
|
|
# Enable Intel RT stuff when available
|
2024-06-20 14:57:18 +00:00
|
|
|
(lib.mesonBool "install-intel-clc" true)
|
|
|
|
(lib.mesonEnable "intel-rt" stdenv.isx86_64)
|
|
|
|
(lib.mesonOption "clang-libdir" "${llvmPackages.clang-unwrapped.lib}/lib")
|
2024-07-27 06:49:29 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
# 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)
|
2024-07-27 06:49:29 +00:00
|
|
|
|
|
|
|
# meson auto_features enables this, but we do not want it
|
|
|
|
(lib.mesonEnable "android-libbacktrace" false)
|
|
|
|
(lib.mesonEnable "microsoft-clc" false) # Only relevant on Windows (OpenCL 1.2 API on top of D3D12)
|
|
|
|
] ++ lib.optionals enablePatentEncumberedCodecs [
|
2024-05-15 15:35:15 +00:00
|
|
|
(lib.mesonOption "video-codecs" "all")
|
2024-06-20 14:57:18 +00:00
|
|
|
] ++ lib.optionals needNativeCLC [
|
|
|
|
(lib.mesonOption "intel-clc" "system")
|
2024-05-15 15:35:15 +00:00
|
|
|
];
|
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-07-27 06:49:29 +00:00
|
|
|
directx-headers
|
|
|
|
elfutils
|
2024-05-15 15:35:15 +00:00
|
|
|
expat
|
|
|
|
glslang
|
|
|
|
libglvnd
|
2024-07-27 06:49:29 +00:00
|
|
|
libomxil-bellagio
|
|
|
|
libunwind
|
|
|
|
libva-minimal
|
2024-05-15 15:35:15 +00:00
|
|
|
libvdpau
|
|
|
|
libX11
|
2024-07-27 06:49:29 +00:00
|
|
|
libxcb
|
2024-05-15 15:35:15 +00:00
|
|
|
libXext
|
|
|
|
libXfixes
|
|
|
|
libXrandr
|
|
|
|
libxshmfence
|
2024-07-27 06:49:29 +00:00
|
|
|
libXxf86vm
|
|
|
|
llvmPackages.clang
|
2024-06-20 14:57:18 +00:00
|
|
|
llvmPackages.clang-unwrapped
|
|
|
|
llvmPackages.libclc
|
2024-07-27 06:49:29 +00:00
|
|
|
llvmPackages.libllvm
|
2024-05-15 15:35:15 +00:00
|
|
|
lm_sensors
|
2024-07-27 06:49:29 +00:00
|
|
|
python3Packages.python # for shebang
|
2024-06-20 14:57:18 +00:00
|
|
|
spirv-llvm-translator
|
2024-05-15 15:35:15 +00:00
|
|
|
udev
|
|
|
|
valgrind-light
|
|
|
|
vulkan-loader
|
2024-07-27 06:49:29 +00:00
|
|
|
wayland
|
|
|
|
wayland-protocols
|
|
|
|
xcbutilkeysyms
|
|
|
|
xorgproto
|
|
|
|
zstd
|
2024-05-15 15:35:15 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
depsBuildBuild = [
|
|
|
|
pkg-config
|
|
|
|
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
|
2024-07-27 06:49:29 +00:00
|
|
|
python3Packages.packaging
|
2024-06-20 14:57:18 +00:00
|
|
|
python3Packages.pycparser
|
2024-05-15 15:35:15 +00:00
|
|
|
python3Packages.mako
|
|
|
|
python3Packages.ply
|
|
|
|
jdupes
|
|
|
|
glslang
|
|
|
|
rustc
|
|
|
|
rust-bindgen
|
2024-06-20 14:57:18 +00:00
|
|
|
rust-cbindgen
|
2024-05-15 15:35:15 +00:00
|
|
|
rustPlatform.bindgenHook
|
|
|
|
wayland-scanner
|
2024-06-20 14:57:18 +00:00
|
|
|
] ++ lib.optionals needNativeCLC [
|
|
|
|
buildPackages.mesa.driversdev
|
|
|
|
];
|
|
|
|
|
|
|
|
disallowedRequisites = lib.optionals needNativeCLC [
|
|
|
|
buildPackages.mesa.driversdev
|
2024-05-15 15:35:15 +00:00
|
|
|
];
|
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
propagatedBuildInputs = [ libdrm ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
postInstall = ''
|
2024-07-27 06:49:29 +00:00
|
|
|
# Move driver-related bits to $drivers
|
|
|
|
moveToOutput "lib/lib*_mesa*" $drivers
|
|
|
|
moveToOutput "lib/libpowervr_rogue*" $drivers
|
|
|
|
moveToOutput "lib/libxatracker*" $drivers
|
|
|
|
moveToOutput "lib/libvulkan_*" $drivers
|
|
|
|
|
|
|
|
# Update search path used by glvnd (it's pointing to $out but drivers are in $drivers)
|
2020-04-24 23:36:52 +00:00
|
|
|
for js in $drivers/share/glvnd/egl_vendor.d/*.json; do
|
2024-07-27 06:49:29 +00:00
|
|
|
substituteInPlace "$js" --replace-fail '"libEGL_' '"'"$drivers/lib/libEGL_"
|
2020-04-24 23:36:52 +00:00
|
|
|
done
|
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
# And same for Vulkan
|
2020-04-24 23:36:52 +00:00
|
|
|
for js in $drivers/share/vulkan/icd.d/*.json; do
|
2024-07-27 06:49:29 +00:00
|
|
|
substituteInPlace "$js" --replace-fail "$out" "$drivers"
|
2020-04-24 23:36:52 +00:00
|
|
|
done
|
2024-07-27 06:49:29 +00:00
|
|
|
|
|
|
|
# Move Vulkan layers to $drivers and update manifests
|
|
|
|
moveToOutput "lib/libVkLayer*" $drivers
|
2022-11-02 22:02:43 +00:00
|
|
|
for js in $drivers/share/vulkan/{im,ex}plicit_layer.d/*.json; do
|
|
|
|
substituteInPlace "$js" --replace '"libVkLayer_' '"'"$drivers/lib/libVkLayer_"
|
|
|
|
done
|
2024-07-27 06:49:29 +00:00
|
|
|
|
|
|
|
# Construct our own .icd files that contain absolute paths.
|
|
|
|
mkdir -p $opencl/etc/OpenCL/vendors/
|
|
|
|
echo $opencl/lib/libMesaOpenCL.so > $opencl/etc/OpenCL/vendors/mesa.icd
|
|
|
|
echo $opencl/lib/libRusticlOpenCL.so > $opencl/etc/OpenCL/vendors/rusticl.icd
|
|
|
|
|
|
|
|
moveToOutput bin/intel_clc $driversdev
|
|
|
|
moveToOutput lib/gallium-pipe $opencl
|
|
|
|
moveToOutput "lib/lib*OpenCL*" $opencl
|
|
|
|
moveToOutput "lib/libOSMesa*" $osmesa
|
|
|
|
moveToOutput bin/spirv2dxil $spirv2dxil
|
|
|
|
moveToOutput "lib/libspirv_to_dxil*" $spirv2dxil
|
|
|
|
moveToOutput lib/libteflon.so $teflon
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
postFixup = ''
|
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
|
2024-06-20 14:57:18 +00:00
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
# add RPATH here so Zink can find libvulkan.so
|
|
|
|
patchelf --add-rpath ${vulkan-loader}/lib $drivers/lib/dri/zink_dri.so
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = toString ([
|
|
|
|
"-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
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
tests.devDoesNotDependOnLLVM = stdenv.mkDerivation {
|
|
|
|
name = "mesa-dev-does-not-depend-on-llvm";
|
|
|
|
buildCommand = ''
|
|
|
|
echo ${mesa.dev} >>$out
|
|
|
|
'';
|
|
|
|
disallowedRequisites = [ llvmPackages.llvm mesa.drivers ];
|
2021-04-26 19:14:03 +00:00
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
llvmpipeHook = makeSetupHook {
|
|
|
|
name = "llvmpipe-hook";
|
|
|
|
substitutions.drivers = mesa.drivers;
|
|
|
|
} ./llvmpipe-hook.sh;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2024-07-27 06:49:29 +00:00
|
|
|
}
|