2015-04-14 20:41:22 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, intltool, autoreconfHook, substituteAll
|
2015-10-03 18:52:03 +00:00
|
|
|
, file, expat, libdrm, xorg, wayland, libudev, llvmPackages, libffi, libomxil-bellagio
|
2015-06-11 00:17:00 +00:00
|
|
|
, libvdpau, libelf, libva
|
2014-01-26 11:27:50 +00:00
|
|
|
, grsecEnabled
|
2013-05-16 15:16:02 +00:00
|
|
|
, enableTextureFloats ? false # Texture floats are patented, see docs/patents.txt
|
|
|
|
}:
|
2004-06-09 17:53:30 +00:00
|
|
|
|
2010-03-01 12:32:40 +00:00
|
|
|
if ! stdenv.lib.lists.elem stdenv.system stdenv.lib.platforms.mesaPlatforms then
|
2009-04-20 22:06:12 +00:00
|
|
|
throw "unsupported platform for Mesa"
|
|
|
|
else
|
2004-06-09 17:53:30 +00:00
|
|
|
|
2013-05-16 15:16:02 +00:00
|
|
|
/** Packaging design:
|
|
|
|
- The basic mesa ($out) contains headers and libraries (GLU is in mesa_glu 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
|
|
|
*/
|
|
|
|
|
2015-04-14 20:41:22 +00:00
|
|
|
with { inherit (stdenv.lib) optional optionalString; };
|
|
|
|
|
2013-01-28 16:38:42 +00:00
|
|
|
let
|
2016-04-18 09:51:43 +00:00
|
|
|
version = "11.1.3";
|
2014-03-17 21:04:03 +00:00
|
|
|
# this is the default search path for DRI drivers
|
2015-04-14 20:41:22 +00:00
|
|
|
driverLink = "/run/opengl-driver" + optionalString stdenv.isi686 "-32";
|
2013-01-28 16:38:42 +00:00
|
|
|
in
|
2013-10-05 19:18:07 +00:00
|
|
|
|
2013-01-28 16:38:42 +00:00
|
|
|
stdenv.mkDerivation {
|
2013-03-24 11:36:33 +00:00
|
|
|
name = "mesa-noglu-${version}";
|
2010-04-29 14:57:02 +00:00
|
|
|
|
2013-10-05 19:18:07 +00:00
|
|
|
src = fetchurl {
|
2015-01-24 21:37:16 +00:00
|
|
|
urls = [
|
2015-03-28 20:57:03 +00:00
|
|
|
"ftp://ftp.freedesktop.org/pub/mesa/${version}/mesa-${version}.tar.xz"
|
2015-12-25 00:32:44 +00:00
|
|
|
(with stdenv.lib; ''ftp://ftp.freedesktop.org/pub/mesa/older-versions/''
|
|
|
|
+ head (splitString "." version) + ''.x/${version}/mesa-${version}.tar.xz'')
|
|
|
|
"https://launchpad.net/mesa/trunk/${version}/+download/mesa-${version}.tar.xz"
|
2015-01-24 21:37:16 +00:00
|
|
|
];
|
2016-04-18 09:51:43 +00:00
|
|
|
sha256 = "51f6658a214d75e4d9f05207586d7ed56ebba75c6b10841176fb6675efa310ac";
|
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
|
|
|
|
2014-01-28 10:34:05 +00:00
|
|
|
patches = [
|
2014-01-26 11:27:50 +00:00
|
|
|
./glx_ro_text_segm.patch # fix for grsecurity/PaX
|
2014-03-17 21:04:03 +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-06-10 10:42:48 +00:00
|
|
|
] ++ optional stdenv.isLinux
|
|
|
|
(substituteAll {
|
|
|
|
src = ./dlopen-absolute-paths.diff;
|
2015-10-03 18:52:03 +00:00
|
|
|
libudev = libudev.out;
|
2014-06-10 10:42:48 +00:00
|
|
|
});
|
2013-05-16 15:16:02 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
2015-02-22 18:11:38 +00:00
|
|
|
substituteInPlace src/egl/main/egldriver.c \
|
|
|
|
--replace _EGL_DRIVER_SEARCH_DIR '"${driverLink}"'
|
2013-05-16 15:16:02 +00:00
|
|
|
'';
|
|
|
|
|
2014-08-30 21:30:31 +00:00
|
|
|
outputs = [ "dev" "out" "drivers" "osmesa" ];
|
2013-05-16 15:16:02 +00:00
|
|
|
|
2013-10-05 19:18:07 +00:00
|
|
|
configureFlags = [
|
2015-03-28 20:57:03 +00:00
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
2013-05-16 15:16:02 +00:00
|
|
|
"--with-dri-driverdir=$(drivers)/lib/dri"
|
|
|
|
"--with-dri-searchpath=${driverLink}/lib/dri"
|
|
|
|
|
2015-03-28 20:57:03 +00:00
|
|
|
"--enable-gles1"
|
|
|
|
"--enable-gles2"
|
2013-05-16 15:16:02 +00:00
|
|
|
"--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"
|
2013-05-22 15:09:00 +00:00
|
|
|
"--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"
|
2013-11-16 20:23:10 +00:00
|
|
|
"--enable-vdpau"
|
2015-06-11 00:17:00 +00:00
|
|
|
#"--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
|
|
|
|
2016-02-11 08:33:42 +00:00
|
|
|
(if "armv7l-linux" == stdenv.system
|
|
|
|
then null
|
|
|
|
else "--with-gallium-drivers=svga,i915,ilo,r300,r600,radeonsi,nouveau,freedreno,swrast")
|
2015-03-28 20:57:03 +00:00
|
|
|
"--enable-shared-glapi"
|
|
|
|
"--enable-sysfs"
|
|
|
|
"--enable-driglx-direct" # seems enabled anyway
|
|
|
|
"--enable-glx-tls"
|
2016-02-11 08:33:42 +00:00
|
|
|
(if "armv7l-linux" == stdenv.system
|
|
|
|
then "--with-dri-drivers="
|
|
|
|
else "--with-dri-drivers=i915,i965,nouveau,radeon,r200,swrast")
|
2015-03-28 20:57:03 +00:00
|
|
|
"--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
|
2012-01-16 17:48:33 +00:00
|
|
|
|
2015-04-14 20:41:22 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig file ];
|
2013-05-16 15:16:02 +00:00
|
|
|
|
2013-06-04 15:06:54 +00:00
|
|
|
propagatedBuildInputs = with xorg; [ libXdamage libXxf86vm ]
|
2015-04-14 20:41:22 +00:00
|
|
|
++ optional stdenv.isLinux libdrm;
|
2015-03-28 20:57:03 +00:00
|
|
|
|
2013-05-16 15:16:02 +00:00
|
|
|
buildInputs = with xorg; [
|
2015-04-14 20:41:22 +00:00
|
|
|
autoreconfHook intltool expat llvmPackages.llvm
|
2014-04-19 11:03:50 +00:00
|
|
|
glproto dri2proto dri3proto presentproto
|
|
|
|
libX11 libXext libxcb libXt libXfixes libxshmfence
|
2015-06-11 00:17:00 +00:00
|
|
|
libffi wayland libvdpau libelf libXvMC /* libomxil-bellagio libva */
|
2015-10-03 18:52:03 +00:00
|
|
|
] ++ optional stdenv.isLinux libudev;
|
2010-04-29 14:57:02 +00:00
|
|
|
|
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
|
|
|
|
2015-04-15 04:38:47 +00:00
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=\${out}/etc"
|
|
|
|
"localstatedir=\${TMPDIR}"
|
|
|
|
];
|
2013-05-16 15:16:02 +00:00
|
|
|
|
2013-11-17 09:53:41 +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
|
2013-05-16 15:16:02 +00:00
|
|
|
# ToDo: probably not all .la files are completely fixed, but it shouldn't matter
|
2013-05-22 15:09:00 +00:00
|
|
|
postInstall = with stdenv.lib; ''
|
2013-05-16 15:16:02 +00:00
|
|
|
mv -t "$drivers/lib/" \
|
2015-04-14 20:41:22 +00:00
|
|
|
$out/lib/libXvMC* \
|
2015-07-26 09:44:55 +00:00
|
|
|
$out/lib/d3d \
|
2013-11-16 20:23:10 +00:00
|
|
|
$out/lib/vdpau \
|
2013-05-22 15:09:00 +00:00
|
|
|
$out/lib/libxatracker*
|
|
|
|
|
2015-10-04 07:52:46 +00:00
|
|
|
mkdir -p {$osmesa,$drivers}/lib/
|
2013-11-17 09:53:41 +00:00
|
|
|
mv -t $osmesa/lib/ \
|
|
|
|
$out/lib/libOSMesa*
|
|
|
|
|
2013-05-16 15:16:02 +00:00
|
|
|
'' + /* now fix references in .la files */ ''
|
2013-11-17 09:53:41 +00:00
|
|
|
sed "/^libdir=/s,$out,$osmesa," -i \
|
|
|
|
$osmesa/lib/libOSMesa*.la
|
|
|
|
|
2015-04-14 20:41:22 +00:00
|
|
|
'' + /* set the default search path for DRI drivers; used e.g. by X server */ ''
|
2015-10-04 07:52:46 +00:00
|
|
|
substituteInPlace "$dev/lib/pkgconfig/dri.pc" --replace '$(drivers)' "${driverLink}"
|
2015-04-14 20:41:22 +00:00
|
|
|
'' + /* 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 */
|
2013-05-22 15:09:00 +00:00
|
|
|
|
2015-04-14 20:41:22 +00:00
|
|
|
postFixup =
|
|
|
|
# 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
|
|
|
|
'';
|
2015-04-14 20:41:22 +00:00
|
|
|
# ToDo + /* check $out doesn't depend on llvm */ ''
|
|
|
|
# builder failures are ignored for some reason
|
|
|
|
# grep -qv '${llvmPackages.llvm}' -R "$out"
|
2011-02-18 09:16:11 +00:00
|
|
|
|
2013-07-04 09:37:25 +00:00
|
|
|
passthru = { inherit libdrm version driverLink; };
|
2010-04-29 14:57:02 +00:00
|
|
|
|
2015-04-14 20:41:22 +00:00
|
|
|
meta = with stdenv.lib; {
|
2008-03-01 17:44:50 +00:00
|
|
|
description = "An open source implementation of OpenGL";
|
2007-11-05 23:59:55 +00:00
|
|
|
homepage = http://www.mesa3d.org/;
|
2015-04-14 20:41:22 +00:00
|
|
|
license = licenses.mit; # X11 variant, in most files
|
|
|
|
platforms = platforms.mesaPlatforms;
|
2016-05-16 20:30:20 +00:00
|
|
|
maintainers = with maintainers; [ eduarrrd vcunat ];
|
2007-11-05 23:59:55 +00:00
|
|
|
};
|
2004-06-09 17:53:30 +00:00
|
|
|
}
|