2013-05-16 17:16:02 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, flex, bison, autoconf, automake, libtool
|
|
|
|
, python, libxml2Python, file, expat, makedepend
|
|
|
|
, libdrm, xorg, wayland, udev, llvm, libffi
|
|
|
|
, libvdpau
|
|
|
|
, enableTextureFloats ? false # Texture floats are patented, see docs/patents.txt
|
2013-08-02 17:13:54 +02:00
|
|
|
, enableR600LlvmCompiler ? false # current llvm-3.3 + mesa-9.1.6 don't configure
|
2013-05-22 17:09:00 +02:00
|
|
|
, enableExtraFeatures ? false # add ~15 MB to mesa_drivers
|
2013-05-16 17:16:02 +02:00
|
|
|
}:
|
2004-06-09 19:53:30 +02:00
|
|
|
|
2010-03-01 13:32:40 +01:00
|
|
|
if ! stdenv.lib.lists.elem stdenv.system stdenv.lib.platforms.mesaPlatforms then
|
2009-04-21 00:06:12 +02:00
|
|
|
throw "unsupported platform for Mesa"
|
|
|
|
else
|
2004-06-09 19:53:30 +02:00
|
|
|
|
2013-05-16 17:16:02 +02:00
|
|
|
/** Packaging design:
|
|
|
|
- The basic mesa ($out) contains headers and libraries (GLU is in mesa_glu now).
|
2013-06-01 23:36:38 +02:00
|
|
|
This or the mesa attribute (which also contains GLU) are small (~ 2.2 MB, mostly headers)
|
2013-05-16 17:16:02 +02:00
|
|
|
and are designed to be the buildInput of other packages.
|
|
|
|
- DRI and EGL drivers are compiled into $drivers output,
|
2013-06-01 23:36:38 +02:00
|
|
|
which is bigger (~13 MB) and depends on LLVM (~40 MB).
|
2013-05-16 17:16:02 +02:00
|
|
|
These should be searched at runtime in /run/current-system/sw/lib/*
|
|
|
|
and so are kind-of impure (given by NixOS).
|
|
|
|
(I suppose on non-NixOS one would create the appropriate symlinks from there.)
|
|
|
|
*/
|
|
|
|
|
2013-01-28 17:38:42 +01:00
|
|
|
let
|
2013-08-02 17:13:54 +02:00
|
|
|
version = "9.1.6";
|
2013-05-16 17:16:02 +02:00
|
|
|
driverLink = "/run/opengl-driver" + stdenv.lib.optionalString stdenv.isi686 "-32";
|
2013-01-28 17:38:42 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2013-03-24 12:36:33 +01:00
|
|
|
name = "mesa-noglu-${version}";
|
2010-04-29 16:57:02 +02:00
|
|
|
|
2007-02-26 18:05:27 +01:00
|
|
|
src = fetchurl {
|
2011-02-11 15:48:30 +01:00
|
|
|
url = "ftp://ftp.freedesktop.org/pub/mesa/${version}/MesaLib-${version}.tar.bz2";
|
2013-08-02 17:13:54 +02:00
|
|
|
sha256 = "0gay00fy84hrnp25hpacz5cbvxrpvgg1d390vichmbdgmkqdycp6";
|
2007-02-26 18:05:27 +01:00
|
|
|
};
|
2010-01-13 13:43:17 +01:00
|
|
|
|
2012-01-16 18:48:33 +01:00
|
|
|
prePatch = "patchShebangs .";
|
2011-07-14 14:22:55 +02:00
|
|
|
|
2013-05-16 17:16:02 +02:00
|
|
|
patches = [
|
|
|
|
./static-gallium.patch
|
|
|
|
./dricore-gallium.patch
|
2013-05-16 20:35:04 +02:00
|
|
|
./fix-rounding.patch
|
2013-05-16 17:16:02 +02: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
|
|
|
|
'';
|
|
|
|
|
|
|
|
outputs = ["out" "drivers"];
|
|
|
|
|
2013-01-26 20:20:56 +01:00
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
|
2013-05-16 17:16:02 +02:00
|
|
|
configureFlags = with stdenv.lib; [
|
|
|
|
"--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
|
|
|
|
"--enable-gallium-llvm" "--with-llvm-shared-libs"
|
2013-05-22 17:09:00 +02:00
|
|
|
"--enable-xa" # used in vmware driver
|
2013-05-16 17:16:02 +02:00
|
|
|
|
|
|
|
"--with-dri-drivers=i965,r200,radeon"
|
|
|
|
"--with-gallium-drivers=i915,nouveau,r300,r600,svga,swrast" # radeonsi complains about R600 missing in LLVM
|
|
|
|
"--with-egl-platforms=x11,wayland,drm" "--enable-gbm" "--enable-shared-glapi"
|
|
|
|
]
|
|
|
|
++ optional enableR600LlvmCompiler "--enable-r600-llvm-compiler" # complains about R600 missing in LLVM
|
|
|
|
++ optional enableTextureFloats "--enable-texture-float"
|
2013-05-22 17:09:00 +02:00
|
|
|
++ optionals enableExtraFeatures [
|
2013-05-16 17:16:02 +02:00
|
|
|
"--enable-gles1" "--enable-gles2"
|
|
|
|
"--enable-osmesa"
|
|
|
|
"--enable-openvg" "--enable-gallium-egl" # not needed for EGL in Gallium, but OpenVG might be useful
|
2013-05-22 17:09:00 +02:00
|
|
|
#"--enable-xvmc" # tests segfault with 9.1.{1,2,3}
|
2013-05-16 17:16:02 +02:00
|
|
|
"--enable-vdpau"
|
|
|
|
#"--enable-opencl" # ToDo: opencl seems to need libclc for clover
|
|
|
|
];
|
2012-01-16 18:48:33 +01:00
|
|
|
|
2013-05-16 17:16:02 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig python makedepend file flex bison ];
|
|
|
|
|
2013-06-04 17:06:54 +02:00
|
|
|
propagatedBuildInputs = with xorg; [ libXdamage libXxf86vm ]
|
|
|
|
++
|
|
|
|
stdenv.lib.optionals stdenv.isLinux [libdrm]
|
|
|
|
;
|
2013-05-16 17:16:02 +02:00
|
|
|
buildInputs = with xorg; [
|
2013-06-14 05:46:33 +02:00
|
|
|
autoconf automake libtool intltool expat libxml2Python llvm
|
2013-06-04 17:06:54 +02:00
|
|
|
libXfixes glproto dri2proto libX11 libXext libxcb libXt
|
2013-04-04 21:43:11 +02:00
|
|
|
libffi wayland
|
2013-06-14 05:46:33 +02:00
|
|
|
] ++ stdenv.lib.optionals enableExtraFeatures [ /*libXvMC*/ libvdpau ]
|
2013-06-04 17:06:54 +02:00
|
|
|
++ stdenv.lib.optional stdenv.isLinux [udev]
|
2013-06-14 05:46:33 +02:00
|
|
|
;
|
2010-04-29 16:57:02 +02:00
|
|
|
|
2011-02-18 10:16:11 +01:00
|
|
|
enableParallelBuilding = true;
|
2013-05-16 17:16:02 +02:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
# move gallium-related stuff to $drivers, so $out doesn't depend on LLVM
|
|
|
|
# ToDo: probably not all .la files are completely fixed, but it shouldn't matter
|
2013-05-22 17:09:00 +02:00
|
|
|
postInstall = with stdenv.lib; ''
|
2013-05-16 17:16:02 +02:00
|
|
|
mv -t "$drivers/lib/" \
|
2013-05-22 17:09:00 +02:00
|
|
|
'' + optionalString enableExtraFeatures ''
|
2013-05-16 17:16:02 +02:00
|
|
|
`#$out/lib/libXvMC*` \
|
|
|
|
$out/lib/vdpau \
|
2013-05-22 17:09:00 +02:00
|
|
|
$out/lib/libOSMesa* \
|
|
|
|
$out/lib/gbm $out/lib/libgbm* \
|
|
|
|
$out/lib/gallium-pipe \
|
|
|
|
'' + ''
|
|
|
|
$out/lib/libdricore* \
|
|
|
|
$out/lib/libgallium* \
|
|
|
|
$out/lib/libxatracker*
|
|
|
|
|
2013-05-16 17:16:02 +02:00
|
|
|
'' + /* now fix references in .la files */ ''
|
|
|
|
sed "/^libdir=/s,$out,$drivers," -i \
|
2013-05-22 17:09:00 +02:00
|
|
|
'' + optionalString enableExtraFeatures ''
|
2013-05-16 17:16:02 +02:00
|
|
|
`#$drivers/lib/libXvMC*.la` \
|
|
|
|
$drivers/lib/vdpau/*.la \
|
2013-05-22 17:09:00 +02:00
|
|
|
$drivers/lib/libOSMesa*.la \
|
|
|
|
$drivers/lib/gallium-pipe/*.la \
|
|
|
|
'' + ''
|
|
|
|
$drivers/lib/libgallium.la \
|
|
|
|
$drivers/lib/libdricore*.la
|
|
|
|
|
2013-05-16 17:16:02 +02:00
|
|
|
sed "s,$out\(/lib/\(libdricore[0-9\.]*\|libgallium\).la\),$drivers\1,g" \
|
|
|
|
-i $drivers/lib/*.la $drivers/lib/*/*.la
|
2013-05-22 17:09:00 +02:00
|
|
|
|
2013-05-16 17:16:02 +02:00
|
|
|
'' + /* work around bug #529, but maybe $drivers should also be patchelf-ed */ ''
|
|
|
|
find $drivers/ -type f -executable -print0 | xargs -0 strip -S || true
|
2013-05-22 17:09:00 +02:00
|
|
|
|
2013-05-16 17:16:02 +02: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
|
|
|
|
'';
|
|
|
|
#ToDo: @vcunat isn't sure if drirc will be found when in $out/etc/, but it doesn't seem important ATM
|
2011-02-18 10:16:11 +01:00
|
|
|
|
2013-07-04 11:37:25 +02:00
|
|
|
passthru = { inherit libdrm version driverLink; };
|
2010-04-29 16:57:02 +02:00
|
|
|
|
2007-11-06 00:59:55 +01:00
|
|
|
meta = {
|
2008-03-01 18:44:50 +01:00
|
|
|
description = "An open source implementation of OpenGL";
|
2007-11-06 00:59:55 +01:00
|
|
|
homepage = http://www.mesa3d.org/;
|
2009-10-29 18:19:25 +01:00
|
|
|
license = "bsd";
|
2011-07-14 21:21:33 +02:00
|
|
|
platforms = stdenv.lib.platforms.mesaPlatforms;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
2007-11-06 00:59:55 +01:00
|
|
|
};
|
2004-06-09 19:53:30 +02:00
|
|
|
}
|