2019-03-26 23:41:50 +00:00
|
|
|
{ stdenv, lib, fetchurl, fetchpatch
|
|
|
|
, pkgconfig, intltool, ninja, meson
|
|
|
|
, file, flex, bison, expat, libdrm, xorg, wayland, wayland-protocols, openssl
|
2018-02-09 04:05:38 +00:00
|
|
|
, llvmPackages, libffi, libomxil-bellagio, libva-minimal
|
2019-03-26 23:41:50 +00:00
|
|
|
, libelf, libvdpau, python3Packages
|
2018-03-17 15:44:40 +00:00
|
|
|
, libglvnd
|
2017-10-07 13:19:13 +00:00
|
|
|
, enableRadv ? true
|
2019-06-29 03:46:55 +00:00
|
|
|
, galliumDrivers ? ["auto"]
|
|
|
|
, driDrivers ? ["auto"]
|
|
|
|
, vulkanDrivers ? ["auto"]
|
2019-08-12 22:09:30 +00:00
|
|
|
, eglPlatforms ? [ "x11" "surfaceless" ] ++ lib.optionals stdenv.isLinux [ "wayland" "drm" ]
|
2018-08-25 20:53:30 +00:00
|
|
|
, OpenGL, Xplugin
|
2019-05-09 01:47:11 +00:00
|
|
|
, withValgrind ? stdenv.hostPlatform.isLinux && !stdenv.hostPlatform.isAarch32, valgrind-light
|
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
|
|
|
*/
|
|
|
|
|
2016-08-24 11:35:30 +00:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2013-01-28 16:38:42 +00:00
|
|
|
let
|
2020-03-11 13:39:20 +00:00
|
|
|
version = "20.0.1";
|
2019-09-24 09:24:13 +00:00
|
|
|
branch = versions.major version;
|
2013-01-28 16:38:42 +00:00
|
|
|
in
|
2013-10-05 19:18:07 +00:00
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
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 = [
|
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"
|
2017-11-13 17:49:46 +00:00
|
|
|
"https://mesa.freedesktop.org/archive/mesa-${version}.tar.xz"
|
2015-01-24 21:37:16 +00:00
|
|
|
];
|
2020-03-11 13:39:20 +00:00
|
|
|
sha256 = "1r6xxrhh86ldwbzrsy4gpv8v49l181mvfkcfq2zlnlmhihzvllv1";
|
2007-02-26 17:05:27 +00:00
|
|
|
};
|
2010-01-13 12:43:17 +00:00
|
|
|
|
2012-01-16 17:48:33 +00:00
|
|
|
prePatch = "patchShebangs .";
|
2011-07-14 12:22:55 +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 = [
|
2018-07-18 14:41:21 +00:00
|
|
|
./missing-includes.patch # dev_t needs sys/stat.h, time_t needs time.h, etc.-- fixes build w/musl
|
2019-03-26 23:41:50 +00:00
|
|
|
./opencl-install-dir.patch
|
2018-08-06 19:23:02 +00:00
|
|
|
./disk_cache-include-dri-driver-path-in-cache-key.patch
|
2019-03-26 23:41:50 +00:00
|
|
|
] # do not prefix user provided dri-drivers-path
|
|
|
|
++ lib.optional (lib.versionOlder version "19.0.0") (fetchpatch {
|
|
|
|
url = "https://gitlab.freedesktop.org/mesa/mesa/commit/f6556ec7d126b31da37c08d7cb657250505e01a0.patch";
|
|
|
|
sha256 = "0z6phi8hbrbb32kkp1js7ggzviq7faz1ria36wi4jbc4in2392d9";
|
|
|
|
})
|
|
|
|
++ lib.optionals (lib.versionOlder version "19.1.0") [
|
|
|
|
# do not prefix user provided d3d-drivers-path
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://gitlab.freedesktop.org/mesa/mesa/commit/dcc48664197c7e44684ccfb970a4ae083974d145.patch";
|
|
|
|
sha256 = "1nhs0xpx3hiy8zfb5gx1zd7j7xha6h0hr7yingm93130a5902lkb";
|
|
|
|
})
|
|
|
|
|
|
|
|
# don't build libGLES*.so with GLVND
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://gitlab.freedesktop.org/mesa/mesa/commit/b01524fff05eef66e8cd24f1c5aacefed4209f03.patch";
|
|
|
|
sha256 = "1pszr6acx2xw469zq89n156p3bf3xf84qpbjw5fr1sj642lbyh7c";
|
|
|
|
})
|
|
|
|
];
|
2013-05-16 15:16:02 +00:00
|
|
|
|
2019-06-29 03:46:55 +00:00
|
|
|
outputs = [ "out" "dev" "drivers" "osmesa" ];
|
2013-05-16 15:16:02 +00:00
|
|
|
|
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"
|
|
|
|
|
|
|
|
# Don't build in debug mode
|
|
|
|
# https://gitlab.freedesktop.org/mesa/mesa/blob/master/docs/meson.html#L327
|
|
|
|
"-Db_ndebug=true"
|
|
|
|
|
|
|
|
"-Ddisk-cache-key=${placeholder "drivers"}"
|
|
|
|
"-Ddri-search-path=${libglvnd.driverLink}/lib/dri"
|
|
|
|
|
|
|
|
"-Dplatforms=${concatStringsSep "," eglPlatforms}"
|
|
|
|
"-Ddri-drivers=${concatStringsSep "," driDrivers}"
|
|
|
|
"-Dgallium-drivers=${concatStringsSep "," galliumDrivers}"
|
|
|
|
"-Dvulkan-drivers=${concatStringsSep "," vulkanDrivers}"
|
|
|
|
|
|
|
|
"-Ddri-drivers-path=${placeholder "drivers"}/lib/dri"
|
|
|
|
"-Dvdpau-libs-path=${placeholder "drivers"}/lib/vdpau"
|
|
|
|
"-Dxvmc-libs-path=${placeholder "drivers"}/lib"
|
|
|
|
"-Domx-libs-path=${placeholder "drivers"}/lib/bellagio"
|
|
|
|
"-Dva-libs-path=${placeholder "drivers"}/lib/dri"
|
|
|
|
"-Dd3d-drivers-path=${placeholder "drivers"}/lib/d3d"
|
2019-06-29 03:46:55 +00:00
|
|
|
] ++ optionals stdenv.isLinux [
|
2019-03-26 23:41:50 +00:00
|
|
|
"-Dglvnd=true"
|
2019-06-29 03:46:55 +00:00
|
|
|
"-Dosmesa=gallium" # used by wine
|
|
|
|
"-Dgallium-nine=true" # Direct3D in Wine
|
|
|
|
];
|
2015-03-28 20:57:03 +00:00
|
|
|
|
2013-05-16 15:16:02 +00:00
|
|
|
buildInputs = with xorg; [
|
2018-12-31 03:40:47 +00:00
|
|
|
expat llvmPackages.llvm 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*/
|
2018-11-18 15:36:24 +00:00
|
|
|
] ++ lib.optionals (elem "wayland" eglPlatforms) [ wayland wayland-protocols ]
|
2019-05-09 01:47:11 +00:00
|
|
|
++ lib.optionals stdenv.isLinux [ libomxil-bellagio libva-minimal ]
|
|
|
|
++ lib.optional withValgrind valgrind-light;
|
2010-04-29 14:57:02 +00:00
|
|
|
|
2019-03-26 23:41:50 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig meson ninja
|
|
|
|
intltool bison flex file
|
|
|
|
python3Packages.python python3Packages.Mako
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = with xorg; [
|
|
|
|
libXdamage libXxf86vm
|
|
|
|
] ++ optional stdenv.isLinux libdrm
|
|
|
|
++ optionals stdenv.isDarwin [ OpenGL Xplugin ];
|
|
|
|
|
2011-02-18 09:16:11 +00:00
|
|
|
enableParallelBuilding = true;
|
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
|
|
|
|
'' + optionalString stdenv.isLinux ''
|
2019-03-26 23:41:50 +00:00
|
|
|
mkdir -p $drivers/lib
|
|
|
|
|
2016-08-24 11:35:30 +00:00
|
|
|
# move gallium-related stuff to $drivers, so $out doesn't depend on LLVM
|
2019-03-26 23:41:50 +00:00
|
|
|
mv -t $drivers/lib \
|
2016-08-24 11:35:30 +00:00
|
|
|
$out/lib/libxatracker* \
|
2016-11-21 20:14:19 +00:00
|
|
|
$out/lib/libvulkan_*
|
2016-10-05 22:33:10 +00:00
|
|
|
|
2018-03-17 15:44:40 +00:00
|
|
|
# Move other drivers to a separate output
|
|
|
|
mv $out/lib/lib*_mesa* $drivers/lib
|
2013-05-22 15:09:00 +00:00
|
|
|
|
2016-08-24 11:35:30 +00:00
|
|
|
# move libOSMesa to $osmesa, as it's relatively big
|
2019-03-26 23:41:50 +00:00
|
|
|
mkdir -p $osmesa/lib
|
2016-08-24 11:35:30 +00:00
|
|
|
mv -t $osmesa/lib/ $out/lib/libOSMesa*
|
2013-11-17 09:53:41 +00:00
|
|
|
|
2018-03-17 15:44:40 +00:00
|
|
|
# move vendor files
|
2017-01-27 11:51:16 +00:00
|
|
|
mv $out/share/ $drivers/
|
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
|
2015-04-14 20:41:22 +00:00
|
|
|
'';
|
2013-05-22 15:09:00 +00:00
|
|
|
|
2016-08-24 11:35:30 +00:00
|
|
|
# TODO:
|
|
|
|
# check $out doesn't depend on llvm: builder failures are ignored
|
|
|
|
# for some reason grep -qv '${llvmPackages.llvm}' -R "$out";
|
2019-06-29 03:46:55 +00:00
|
|
|
postFixup = 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
|
|
|
|
substituteInPlace "$dev/lib/pkgconfig/dri.pc" --replace "$drivers" "${libglvnd.driverLink}"
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
# Update search path used by pkg-config
|
|
|
|
for pc in $dev/lib/pkgconfig/{d3d,dri,xatracker}.pc; do
|
|
|
|
substituteInPlace "$pc" --replace $out $drivers
|
|
|
|
done
|
|
|
|
|
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
|
|
|
|
'';
|
2011-02-18 09:16:11 +00:00
|
|
|
|
2019-06-29 03:46:55 +00:00
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-fno-common";
|
|
|
|
|
2018-03-17 15:44:40 +00:00
|
|
|
passthru = {
|
2019-06-12 21:18:19 +00:00
|
|
|
inherit libdrm;
|
2018-03-17 15:44:40 +00:00
|
|
|
inherit (libglvnd) driverLink;
|
|
|
|
};
|
2010-04-29 14:57:02 +00:00
|
|
|
|
2015-04-14 20:41:22 +00:00
|
|
|
meta = with stdenv.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;
|
2018-07-11 21:22:57 +00:00
|
|
|
maintainers = with maintainers; [ vcunat ];
|
2007-11-05 23:59:55 +00:00
|
|
|
};
|
2019-06-12 21:18:19 +00:00
|
|
|
}
|