2014-11-25 00:03:29 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, intltool, flex, bison, autoreconfHook, substituteAll
|
2013-05-16 15:16:02 +00:00
|
|
|
, python, libxml2Python, file, expat, makedepend
|
|
|
|
, libdrm, xorg, wayland, udev, llvm, libffi
|
2014-01-26 13:08:23 +00:00
|
|
|
, libvdpau, libelf
|
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
|
2013-11-17 09:53:41 +00:00
|
|
|
, enableExtraFeatures ? false # not maintained
|
2013-05-16 15:16:02 +00:00
|
|
|
}:
|
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.
|
|
|
|
- DRI and EGL drivers are compiled into $drivers output,
|
2014-01-28 10:34:05 +00:00
|
|
|
which is much bigger and depends on LLVM.
|
2013-10-05 19:18:07 +00:00
|
|
|
These should be searched at runtime in "/run/opengl-driver{,-32}/lib/*"
|
2013-05-16 15:16:02 +00:00
|
|
|
and so are kind-of impure (given by NixOS).
|
|
|
|
(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
|
|
|
*/
|
|
|
|
|
2013-01-28 16:38:42 +00:00
|
|
|
let
|
2014-10-18 08:37:41 +00:00
|
|
|
version = "10.2.9";
|
2014-03-17 21:04:03 +00:00
|
|
|
# this is the default search path for DRI drivers
|
2013-05-16 15:16:02 +00:00
|
|
|
driverLink = "/run/opengl-driver" + stdenv.lib.optionalString stdenv.isi686 "-32";
|
2013-01-28 16:38:42 +00:00
|
|
|
in
|
2013-10-05 19:18:07 +00:00
|
|
|
with { inherit (stdenv.lib) optional optionals optionalString; };
|
|
|
|
|
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 {
|
2011-02-11 14:48:30 +00:00
|
|
|
url = "ftp://ftp.freedesktop.org/pub/mesa/${version}/MesaLib-${version}.tar.bz2";
|
2014-10-18 08:37:41 +00:00
|
|
|
sha256 = "f6031f8b7113a92325b60635c504c510490eebb2e707119bbff7bd86aa34657d";
|
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 = [
|
2013-05-16 15:16:02 +00:00
|
|
|
./static-gallium.patch
|
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-11-25 00:03:29 +00:00
|
|
|
(fetchpatch {
|
|
|
|
name = "fix-lp_test_arit.diff";
|
|
|
|
url = "http://cgit.freedesktop.org/mesa/mesa/patch/"
|
|
|
|
+ "?id=8148a06b8fdb734f7f9a11ce787ee6505939fdaa";
|
|
|
|
sha256 = "0k2bnl7d28nx2y88jchw6jj4f3xfdjjvz4vpvhc40060c2iz8fla";
|
|
|
|
})
|
2014-06-10 10:42:48 +00:00
|
|
|
] ++ optional stdenv.isLinux
|
|
|
|
(substituteAll {
|
|
|
|
src = ./dlopen-absolute-paths.diff;
|
|
|
|
inherit udev;
|
|
|
|
});
|
2013-05-16 15:16:02 +00:00
|
|
|
|
|
|
|
# Change the search path for EGL drivers from $drivers/* to driverLink
|
|
|
|
postPatch = ''
|
|
|
|
sed '/D_EGL_DRIVER_SEARCH_DIR=/s,EGL_DRIVER_INSTALL_DIR,${driverLink}/lib/egl,' \
|
|
|
|
-i src/egl/main/Makefile.am
|
2014-03-17 21:04:03 +00:00
|
|
|
'' + /* work around RTTI LLVM problems */ ''
|
|
|
|
patch -R -p1 < ${./rtti.patch}
|
2013-05-16 15:16:02 +00:00
|
|
|
'';
|
|
|
|
|
2013-11-17 09:53:41 +00:00
|
|
|
outputs = ["out" "drivers" "osmesa"];
|
2013-05-16 15:16:02 +00:00
|
|
|
|
2013-10-05 19:18:07 +00:00
|
|
|
configureFlags = [
|
2013-05-16 15:16:02 +00:00
|
|
|
"--with-dri-driverdir=$(drivers)/lib/dri"
|
|
|
|
"--with-egl-driver-dir=$(drivers)/lib/egl"
|
|
|
|
"--with-dri-searchpath=${driverLink}/lib/dri"
|
|
|
|
|
|
|
|
"--enable-dri"
|
|
|
|
"--enable-glx-tls"
|
|
|
|
"--enable-shared-glapi" "--enable-shared-gallium"
|
|
|
|
"--enable-driglx-direct" # seems enabled anyway
|
2014-06-26 16:31:52 +00:00
|
|
|
"--enable-gallium-llvm" "--enable-llvm-shared-libs"
|
2013-05-22 15:09:00 +00:00
|
|
|
"--enable-xa" # used in vmware driver
|
2013-10-08 18:20:03 +00:00
|
|
|
"--enable-gles1" "--enable-gles2"
|
2013-11-16 20:23:10 +00:00
|
|
|
"--enable-vdpau"
|
2013-11-17 09:53:41 +00:00
|
|
|
"--enable-osmesa" # used by wine
|
2013-05-16 15:16:02 +00:00
|
|
|
|
|
|
|
"--with-dri-drivers=i965,r200,radeon"
|
2014-02-02 09:00:56 +00:00
|
|
|
"--with-gallium-drivers=i915,nouveau,r300,r600,svga,swrast,radeonsi"
|
2014-11-24 21:09:43 +00:00
|
|
|
"--with-egl-platforms=x11,wayland,drm" "--enable-gbm"
|
2013-05-16 15:16:02 +00:00
|
|
|
]
|
|
|
|
++ optional enableTextureFloats "--enable-texture-float"
|
2013-05-22 15:09:00 +00:00
|
|
|
++ optionals enableExtraFeatures [
|
2013-05-16 15:16:02 +00:00
|
|
|
"--enable-openvg" "--enable-gallium-egl" # not needed for EGL in Gallium, but OpenVG might be useful
|
2013-05-22 15:09:00 +00:00
|
|
|
#"--enable-xvmc" # tests segfault with 9.1.{1,2,3}
|
2013-05-16 15:16:02 +00:00
|
|
|
#"--enable-opencl" # ToDo: opencl seems to need libclc for clover
|
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
|
|
|
|
2013-05-16 15:16:02 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig python makedepend file flex bison ];
|
|
|
|
|
2013-06-04 15:06:54 +00:00
|
|
|
propagatedBuildInputs = with xorg; [ libXdamage libXxf86vm ]
|
2013-10-05 19:18:07 +00:00
|
|
|
++ optionals stdenv.isLinux [libdrm]
|
|
|
|
;
|
2013-05-16 15:16:02 +00:00
|
|
|
buildInputs = with xorg; [
|
2014-01-23 21:49:44 +00:00
|
|
|
autoreconfHook intltool expat libxml2Python llvm
|
2014-04-19 11:03:50 +00:00
|
|
|
glproto dri2proto dri3proto presentproto
|
|
|
|
libX11 libXext libxcb libXt libXfixes libxshmfence
|
2014-11-24 21:09:43 +00:00
|
|
|
libffi wayland libvdpau libelf
|
2013-11-16 20:23:10 +00:00
|
|
|
] ++ optionals enableExtraFeatures [ /*libXvMC*/ ]
|
2013-10-05 19:18:07 +00:00
|
|
|
++ optional stdenv.isLinux udev
|
|
|
|
;
|
2010-04-29 14:57:02 +00:00
|
|
|
|
2011-02-18 09:16:11 +00:00
|
|
|
enableParallelBuilding = true;
|
2014-11-25 00:03:29 +00:00
|
|
|
doCheck = true;
|
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/" \
|
2013-05-22 15:09:00 +00:00
|
|
|
'' + optionalString enableExtraFeatures ''
|
2013-05-16 15:16:02 +00:00
|
|
|
`#$out/lib/libXvMC*` \
|
2013-05-22 15:09:00 +00:00
|
|
|
$out/lib/gbm $out/lib/libgbm* \
|
|
|
|
'' + ''
|
2014-11-08 20:42:48 +00:00
|
|
|
$out/lib/gallium-pipe \
|
2013-05-22 15:09:00 +00:00
|
|
|
$out/lib/libdricore* \
|
|
|
|
$out/lib/libgallium* \
|
2013-11-16 20:23:10 +00:00
|
|
|
$out/lib/vdpau \
|
2013-05-22 15:09:00 +00:00
|
|
|
$out/lib/libxatracker*
|
|
|
|
|
2013-11-17 09:53:41 +00:00
|
|
|
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
|
|
|
|
|
2013-05-16 15:16:02 +00:00
|
|
|
'' + /* now fix references in .la files */ ''
|
|
|
|
sed "/^libdir=/s,$out,$drivers," -i \
|
2013-05-22 15:09:00 +00:00
|
|
|
'' + optionalString enableExtraFeatures ''
|
2013-05-16 15:16:02 +00:00
|
|
|
`#$drivers/lib/libXvMC*.la` \
|
2013-05-22 15:09:00 +00:00
|
|
|
'' + ''
|
2014-11-08 20:42:48 +00:00
|
|
|
$drivers/lib/gallium-pipe/*.la \
|
2013-05-22 15:09:00 +00:00
|
|
|
$drivers/lib/libgallium.la \
|
2013-11-16 20:23:10 +00:00
|
|
|
$drivers/lib/vdpau/*.la \
|
2013-05-22 15:09:00 +00:00
|
|
|
$drivers/lib/libdricore*.la
|
|
|
|
|
2013-05-16 15:16:02 +00:00
|
|
|
sed "s,$out\(/lib/\(libdricore[0-9\.]*\|libgallium\).la\),$drivers\1,g" \
|
|
|
|
-i $drivers/lib/*.la $drivers/lib/*/*.la
|
2013-05-22 15:09:00 +00:00
|
|
|
|
2013-11-17 09:53:41 +00:00
|
|
|
sed "/^libdir=/s,$out,$osmesa," -i \
|
|
|
|
$osmesa/lib/libOSMesa*.la
|
|
|
|
|
2013-05-16 15:16:02 +00:00
|
|
|
'' + /* work around bug #529, but maybe $drivers should also be patchelf-ed */ ''
|
2013-11-17 09:53:41 +00:00
|
|
|
find $drivers/ $osmesa/ -type f -executable -print0 | xargs -0 strip -S || true
|
2013-05-22 15:09:00 +00:00
|
|
|
|
2013-05-16 15:16:02 +00:00
|
|
|
'' + /* 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
|
2013-09-11 09:36:15 +00:00
|
|
|
'' + /* set the default search path for DRI drivers; used e.g. by X server */ ''
|
|
|
|
substituteInPlace "$out/lib/pkgconfig/dri.pc" --replace '$(drivers)' "${driverLink}"
|
2013-12-14 22:51:48 +00:00
|
|
|
'' + /* move vdpau drivers to $drivers/lib, so they are found */ ''
|
|
|
|
mv "$drivers"/lib/vdpau/* "$drivers"/lib/ && rmdir "$drivers"/lib/vdpau
|
2013-05-16 15:16:02 +00:00
|
|
|
'';
|
|
|
|
#ToDo: @vcunat isn't sure if drirc will be found when in $out/etc/, but it doesn't seem important ATM
|
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
|
|
|
|
2007-11-05 23:59:55 +00:00
|
|
|
meta = {
|
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/;
|
2009-10-29 17:19:25 +00:00
|
|
|
license = "bsd";
|
2011-07-14 19:21:33 +00:00
|
|
|
platforms = stdenv.lib.platforms.mesaPlatforms;
|
2013-12-10 11:52:24 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ simons vcunat ];
|
2007-11-05 23:59:55 +00:00
|
|
|
};
|
2004-06-09 17:53:30 +00:00
|
|
|
}
|