2012-01-14 04:13:51 -08:00
|
|
|
{ stdenv, fetchurl, flex, bison, pkgconfig, x11, xlibs, libdrm, file, expat
|
2011-07-14 12:21:29 -07:00
|
|
|
, python, libxml2Python, lipo ? null }:
|
2004-06-09 10:53:30 -07:00
|
|
|
|
2010-03-01 04:32:40 -08:00
|
|
|
if ! stdenv.lib.lists.elem stdenv.system stdenv.lib.platforms.mesaPlatforms then
|
2009-04-20 15:06:12 -07:00
|
|
|
throw "unsupported platform for Mesa"
|
|
|
|
else
|
2004-06-09 10:53:30 -07:00
|
|
|
|
2012-01-14 04:13:51 -08:00
|
|
|
let version = "7.10.3"; in
|
2011-02-11 06:48:30 -08:00
|
|
|
|
2004-06-09 10:53:30 -07:00
|
|
|
stdenv.mkDerivation {
|
2011-02-11 06:48:30 -08:00
|
|
|
name = "mesa-${version}";
|
2010-04-29 07:57:02 -07:00
|
|
|
|
2007-02-26 09:05:27 -08:00
|
|
|
src = fetchurl {
|
2011-02-11 06:48:30 -08:00
|
|
|
url = "ftp://ftp.freedesktop.org/pub/mesa/${version}/MesaLib-${version}.tar.bz2";
|
2012-01-14 04:13:51 -08:00
|
|
|
sha256 = "1h451vgsfsp0h0wig66spqgxmjalsy28gvd9viynfwmq7741yw0y";
|
2007-02-26 09:05:27 -08:00
|
|
|
};
|
2010-01-13 04:43:17 -08:00
|
|
|
|
2011-03-07 13:16:34 -08:00
|
|
|
patches = [ ./swrast-settexbuffer.patch ];
|
|
|
|
|
2012-01-14 04:13:51 -08:00
|
|
|
postPatch = ''
|
|
|
|
find . -name "*.py" -exec sed -i -e "s|#! */usr/bin/env python|#! ${python}/bin/python|" {} +
|
|
|
|
'';
|
2011-07-14 05:22:55 -07:00
|
|
|
|
2010-07-20 12:24:21 -07:00
|
|
|
configureFlags =
|
2011-07-14 12:21:37 -07:00
|
|
|
" --with-driver=dri --enable-gl-osmesa --enable-gles1"
|
2012-01-14 04:13:51 -08:00
|
|
|
+ " --enable-gallium --enable-gallium-r600 --enable-gles2"
|
|
|
|
+ " --enable-gallium-swrast --enable-gallium-egl --disable-glx-tls"
|
2011-07-14 12:21:37 -07:00
|
|
|
+ " --enable-xcb --enable-egl --disable-glut";
|
2010-04-29 07:57:02 -07:00
|
|
|
|
2012-01-14 04:13:51 -08:00
|
|
|
buildInputs =
|
|
|
|
[ pkgconfig expat x11 libdrm xlibs.makedepend xlibs.glproto
|
|
|
|
xlibs.libXxf86vm xlibs.libXfixes xlibs.libXdamage xlibs.dri2proto
|
|
|
|
lipo file python libxml2Python flex bison
|
|
|
|
];
|
2010-04-29 07:57:02 -07:00
|
|
|
|
2011-02-18 01:16:11 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-10-29 10:19:25 -07:00
|
|
|
passthru = { inherit libdrm; };
|
2010-04-29 07:57:02 -07:00
|
|
|
|
2007-11-05 15:59:55 -08:00
|
|
|
meta = {
|
2008-03-01 09:44:50 -08:00
|
|
|
description = "An open source implementation of OpenGL";
|
2007-11-05 15:59:55 -08:00
|
|
|
homepage = http://www.mesa3d.org/;
|
2009-10-29 10:19:25 -07:00
|
|
|
license = "bsd";
|
2011-07-14 12:21:33 -07:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.mesaPlatforms;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
2007-11-05 15:59:55 -08:00
|
|
|
};
|
2004-06-09 10:53:30 -07:00
|
|
|
}
|