2011-07-14 14:22:59 +02:00
|
|
|
{ stdenv, fetchurl, flex, bison, pkgconfig, x11, xlibs, libdrm, file, expat
|
2011-07-14 21:21:29 +02:00
|
|
|
, python, libxml2Python, lipo ? null }:
|
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
|
|
|
|
2011-07-14 14:22:59 +02:00
|
|
|
let version = "7.10.3"; in
|
2011-02-11 15:48:30 +01:00
|
|
|
|
2004-06-09 19:53:30 +02:00
|
|
|
stdenv.mkDerivation {
|
2011-02-11 15:48:30 +01:00
|
|
|
name = "mesa-${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";
|
2011-07-14 14:22:59 +02:00
|
|
|
sha256 = "1h451vgsfsp0h0wig66spqgxmjalsy28gvd9viynfwmq7741yw0y";
|
2007-02-26 18:05:27 +01:00
|
|
|
};
|
2010-01-13 13:43:17 +01:00
|
|
|
|
2011-03-07 22:16:34 +01:00
|
|
|
patches = [ ./swrast-settexbuffer.patch ];
|
|
|
|
|
2011-07-14 14:22:55 +02:00
|
|
|
postPatch = ''
|
2011-07-14 21:21:29 +02:00
|
|
|
find . -name "*.py" -exec sed -i -e "s|#! */usr/bin/env python|#! ${python}/bin/python|" {} +
|
2011-07-14 14:22:55 +02:00
|
|
|
'';
|
|
|
|
|
2010-07-20 21:24:21 +02:00
|
|
|
configureFlags =
|
2011-07-14 14:22:55 +02:00
|
|
|
"--enable-gallium --enable-gl-osmesa --with-dri-drivers=swrast,radeon,r600 "
|
2011-02-11 15:48:30 +01:00
|
|
|
+ stdenv.lib.optionalString (stdenv.system == "mips64-linux")
|
|
|
|
" --with-dri-drivers=swrast --with-driver=dri"
|
|
|
|
+ stdenv.lib.optionalString stdenv.isDarwin " --disable-egl";
|
2010-04-29 16:57:02 +02:00
|
|
|
|
2009-10-29 18:19:25 +01:00
|
|
|
buildInputs =
|
2011-03-07 12:51:08 +01:00
|
|
|
[ pkgconfig expat x11 libdrm xlibs.makedepend xlibs.glproto
|
2009-10-29 18:19:25 +01:00
|
|
|
xlibs.libXxf86vm xlibs.libXfixes xlibs.libXdamage xlibs.dri2proto
|
2011-07-14 21:21:29 +02:00
|
|
|
lipo file python libxml2Python flex bison
|
2009-10-29 18:19:25 +01:00
|
|
|
];
|
2010-04-29 16:57:02 +02:00
|
|
|
|
2011-02-18 10:16:11 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-10-29 18:19:25 +01:00
|
|
|
passthru = { inherit libdrm; };
|
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
|
|
|
}
|