aa564bbac5
* Remove upstreamed patch * EGL driver dirs are no longer a thing, see mesa commit 407450eb84f5a1b466a2eff19b85cdee7ac15dfb Patching runtime search dir in sources instead (by vcunat). * static-gallium patch dropped as it causes visibility issues with nouveau * rtti patch dropped as it the relevant configuration has been removed upstream; properly fixed by an LLVM flag now * Checks disabled. This is known and solved upstream. Checks will be re-enabled in a future commit when updating to a version containing the fixes * Use llvm-3.5 now (by vcunat).
171 lines
6.2 KiB
Nix
171 lines
6.2 KiB
Nix
{ stdenv, fetchurl, fetchpatch, pkgconfig, intltool, flex, bison, autoreconfHook, substituteAll
|
|
, python, libxml2Python, file, expat, makedepend
|
|
, libdrm, xorg, wayland, udev, llvm, libffi
|
|
, libvdpau, libelf
|
|
, grsecEnabled
|
|
, enableTextureFloats ? false # Texture floats are patented, see docs/patents.txt
|
|
, enableExtraFeatures ? false # not maintained
|
|
}:
|
|
|
|
if ! stdenv.lib.lists.elem stdenv.system stdenv.lib.platforms.mesaPlatforms then
|
|
throw "unsupported platform for Mesa"
|
|
else
|
|
|
|
/** Packaging design:
|
|
- The basic mesa ($out) contains headers and libraries (GLU is in mesa_glu now).
|
|
This or the mesa attribute (which also contains GLU) are small (~ 2 MB, mostly headers)
|
|
and are designed to be the buildInput of other packages.
|
|
- 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).
|
|
(I suppose on non-NixOS one would create the appropriate symlinks from there.)
|
|
- libOSMesa is in $osmesa (~4 MB)
|
|
*/
|
|
|
|
let
|
|
version = "10.4.5";
|
|
# this is the default search path for DRI drivers
|
|
driverLink = "/run/opengl-driver" + stdenv.lib.optionalString stdenv.isi686 "-32";
|
|
in
|
|
with { inherit (stdenv.lib) optional optionals optionalString; };
|
|
|
|
stdenv.mkDerivation {
|
|
name = "mesa-noglu-${version}";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"https://launchpad.net/mesa/trunk/${version}/+download/MesaLib-${version}.tar.bz2"
|
|
"ftp://ftp.freedesktop.org/pub/mesa/${version}/MesaLib-${version}.tar.bz2"
|
|
];
|
|
sha256 = "bf60000700a9d58e3aca2bfeee7e781053b0d839e61a95b1883e05a2dee247a0";
|
|
};
|
|
|
|
prePatch = "patchShebangs .";
|
|
|
|
patches = [
|
|
./glx_ro_text_segm.patch # fix for grsecurity/PaX
|
|
# 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
|
|
] ++ optional stdenv.isLinux
|
|
(substituteAll {
|
|
src = ./dlopen-absolute-paths.diff;
|
|
inherit udev;
|
|
});
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/egl/main/egldriver.c \
|
|
--replace _EGL_DRIVER_SEARCH_DIR '"${driverLink}"'
|
|
'';
|
|
|
|
outputs = ["out" "drivers" "osmesa"];
|
|
|
|
configureFlags = [
|
|
"--with-dri-driverdir=$(drivers)/lib/dri"
|
|
"--with-dri-searchpath=${driverLink}/lib/dri"
|
|
|
|
"--enable-dri"
|
|
"--enable-glx-tls"
|
|
"--enable-shared-glapi"
|
|
"--enable-driglx-direct" # seems enabled anyway
|
|
"--enable-gallium-llvm" "--enable-llvm-shared-libs"
|
|
"--enable-xa" # used in vmware driver
|
|
"--enable-gles1" "--enable-gles2"
|
|
"--enable-vdpau"
|
|
"--enable-osmesa" # used by wine
|
|
|
|
"--with-dri-drivers=i965,r200,radeon"
|
|
"--with-gallium-drivers=i915,nouveau,r300,r600,svga,swrast,radeonsi"
|
|
"--with-egl-platforms=x11,wayland,drm" "--enable-gbm"
|
|
]
|
|
++ optional enableTextureFloats "--enable-texture-float"
|
|
++ optionals enableExtraFeatures [
|
|
"--enable-openvg" "--enable-gallium-egl" # not needed for EGL in Gallium, but OpenVG might be useful
|
|
#"--enable-xvmc" # tests segfault with 9.1.{1,2,3}
|
|
#"--enable-opencl" # ToDo: opencl seems to need libclc for clover
|
|
]
|
|
++ optional grsecEnabled "--enable-glx-rts"; # slight performance degradation, enable only for grsec
|
|
|
|
nativeBuildInputs = [ pkgconfig python makedepend file flex bison ];
|
|
|
|
propagatedBuildInputs = with xorg; [ libXdamage libXxf86vm ]
|
|
++ optionals stdenv.isLinux [libdrm]
|
|
;
|
|
buildInputs = with xorg; [
|
|
autoreconfHook intltool expat libxml2Python llvm
|
|
glproto dri2proto dri3proto presentproto
|
|
libX11 libXext libxcb libXt libXfixes libxshmfence
|
|
libffi wayland libvdpau libelf
|
|
] ++ optionals enableExtraFeatures [ /*libXvMC*/ ]
|
|
++ optional stdenv.isLinux udev
|
|
;
|
|
|
|
enableParallelBuilding = true;
|
|
doCheck = false;
|
|
|
|
# move gallium-related stuff to $drivers, so $out doesn't depend on LLVM;
|
|
# also move libOSMesa to $osmesa, as it's relatively big
|
|
# ToDo: probably not all .la files are completely fixed, but it shouldn't matter
|
|
postInstall = with stdenv.lib; ''
|
|
mv -t "$drivers/lib/" \
|
|
'' + optionalString enableExtraFeatures ''
|
|
`#$out/lib/libXvMC*` \
|
|
$out/lib/gbm $out/lib/libgbm* \
|
|
'' + ''
|
|
$out/lib/gallium-pipe \
|
|
$out/lib/libdricore* \
|
|
$out/lib/libgallium* \
|
|
$out/lib/vdpau \
|
|
$out/lib/libxatracker*
|
|
|
|
mkdir -p {$osmesa,$drivers}/lib/pkgconfig
|
|
mv -t $osmesa/lib/ \
|
|
$out/lib/libOSMesa*
|
|
|
|
mv -t $drivers/lib/pkgconfig/ \
|
|
$out/lib/pkgconfig/xatracker.pc
|
|
|
|
mv -t $osmesa/lib/pkgconfig/ \
|
|
$out/lib/pkgconfig/osmesa.pc
|
|
|
|
'' + /* now fix references in .la files */ ''
|
|
sed "/^libdir=/s,$out,$drivers," -i \
|
|
'' + optionalString enableExtraFeatures ''
|
|
`#$drivers/lib/libXvMC*.la` \
|
|
'' + ''
|
|
$drivers/lib/gallium-pipe/*.la \
|
|
$drivers/lib/libgallium.la \
|
|
$drivers/lib/vdpau/*.la \
|
|
$drivers/lib/libdricore*.la
|
|
|
|
sed "s,$out\(/lib/\(libdricore[0-9\.]*\|libgallium\).la\),$drivers\1,g" \
|
|
-i $drivers/lib/*.la $drivers/lib/*/*.la
|
|
|
|
sed "/^libdir=/s,$out,$osmesa," -i \
|
|
$osmesa/lib/libOSMesa*.la
|
|
|
|
'' + /* work around bug #529, but maybe $drivers should also be patchelf-ed */ ''
|
|
find $drivers/ $osmesa/ -type f -executable -print0 | xargs -0 strip -S || true
|
|
|
|
'' + /* add RPATH so the drivers can find the moved libgallium and libdricore9 */ ''
|
|
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
|
|
'' + /* set the default search path for DRI drivers; used e.g. by X server */ ''
|
|
substituteInPlace "$out/lib/pkgconfig/dri.pc" --replace '$(drivers)' "${driverLink}"
|
|
'' + /* move vdpau drivers to $drivers/lib, so they are found */ ''
|
|
mv "$drivers"/lib/vdpau/* "$drivers"/lib/ && rmdir "$drivers"/lib/vdpau
|
|
'';
|
|
#ToDo: @vcunat isn't sure if drirc will be found when in $out/etc/, but it doesn't seem important ATM
|
|
|
|
passthru = { inherit libdrm version driverLink; };
|
|
|
|
meta = {
|
|
description = "An open source implementation of OpenGL";
|
|
homepage = http://www.mesa3d.org/;
|
|
license = "bsd";
|
|
platforms = stdenv.lib.platforms.mesaPlatforms;
|
|
maintainers = with stdenv.lib.maintainers; [ eduarrrd simons vcunat ];
|
|
};
|
|
}
|