nixpkgs/pkgs/development/libraries/mesa/default.nix

170 lines
5.9 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch, pkgconfig, intltool, flex, bison, autoreconfHook, substituteAll
2015-03-28 20:57:03 +00:00
, python, libxml2Python, file, expat, makedepend, pythonPackages
, libdrm, xorg, wayland, udev, llvmPackages, libffi, libomxil-bellagio
, libvdpau, libelf, libva
2014-01-26 11:27:50 +00:00
, grsecEnabled
, enableTextureFloats ? false # Texture floats are patented, see docs/patents.txt
}:
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
2015-11-11 23:45:15 +00:00
version = "11.0.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 {
2015-01-24 21:37:16 +00:00
urls = [
2015-03-28 20:57:03 +00:00
"https://launchpad.net/mesa/trunk/${version}/+download/mesa-${version}.tar.xz"
"ftp://ftp.freedesktop.org/pub/mesa/${version}/mesa-${version}.tar.xz"
2015-01-24 21:37:16 +00:00
];
2015-11-11 23:45:15 +00:00
sha256 = "9c255a2a6695fcc6ef4a279e1df0aeaf417dc142f39ee59dfb533d80494bb67a";
};
prePatch = "patchShebangs .";
patches = [
2014-01-26 11:27:50 +00:00
./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 = [
2015-03-28 20:57:03 +00:00
"--sysconfdir=/etc"
"--localstatedir=/var"
"--with-dri-driverdir=$(drivers)/lib/dri"
"--with-dri-searchpath=${driverLink}/lib/dri"
2015-03-28 20:57:03 +00:00
"--enable-gles1"
"--enable-gles2"
"--enable-dri"
2015-03-28 20:57:03 +00:00
] ++ optional stdenv.isLinux "--enable-dri3"
++ [
"--enable-glx"
"--enable-gallium-osmesa" # used by wine
"--enable-egl"
"--enable-xa" # used in vmware driver
2015-03-28 20:57:03 +00:00
"--enable-gbm"
] ++ optional stdenv.isLinux "--enable-nine" # Direct3D in Wine
++ [
"--enable-xvmc"
"--enable-vdpau"
#"--enable-omx"
#"--enable-va"
2015-04-07 06:07:27 +00:00
# TODO: Figure out how to enable opencl without having a runtime dependency on clang
"--disable-opencl"
2015-03-28 20:57:03 +00:00
"--with-gallium-drivers=svga,i915,ilo,r300,r600,radeonsi,nouveau,freedreno,swrast"
"--enable-shared-glapi"
"--enable-sysfs"
"--enable-driglx-direct" # seems enabled anyway
"--enable-glx-tls"
"--with-dri-drivers=i915,i965,nouveau,radeon,r200,swrast"
"--with-egl-platforms=x11,wayland,drm"
"--enable-gallium-llvm"
"--enable-llvm-shared-libs"
] ++ optional enableTextureFloats "--enable-texture-float"
2014-01-26 11:27:50 +00:00
++ optional grsecEnabled "--enable-glx-rts"; # slight performance degradation, enable only for grsec
2015-03-28 20:57:03 +00:00
nativeBuildInputs = [ pkgconfig python makedepend file flex bison pythonPackages.Mako ];
2013-06-04 15:06:54 +00:00
propagatedBuildInputs = with xorg; [ libXdamage libXxf86vm ]
2015-03-28 20:57:03 +00:00
++ optionals stdenv.isLinux [ libdrm ];
buildInputs = with xorg; [
2015-03-28 20:57:03 +00:00
autoreconfHook intltool expat libxml2Python llvmPackages.llvm
2014-04-19 11:03:50 +00:00
glproto dri2proto dri3proto presentproto
libX11 libXext libxcb libXt libXfixes libxshmfence
libffi wayland libvdpau libelf libXvMC /* libomxil-bellagio libva */
2015-03-28 20:57:03 +00:00
] ++ optional stdenv.isLinux udev;
enableParallelBuilding = true;
doCheck = false;
2015-04-15 04:38:47 +00:00
installFlags = [
"sysconfdir=\${out}/etc"
"localstatedir=\${TMPDIR}"
];
2015-03-28 20:57:03 +00:00
# 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/" \
$out/lib/libXvMC* \
$out/lib/d3d \
$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,$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 ];
};
}