2011-02-11 14:48:30 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, x11, xlibs, libdrm, expat, lipo ? null, talloc }:
|
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
|
|
|
|
2011-03-07 11:51:08 +00:00
|
|
|
let version = "7.10.1"; in
|
2011-02-11 14:48:30 +00:00
|
|
|
|
2004-06-09 17:53:30 +00:00
|
|
|
stdenv.mkDerivation {
|
2011-02-11 14:48:30 +00:00
|
|
|
name = "mesa-${version}";
|
2010-04-29 14:57:02 +00:00
|
|
|
|
2007-02-26 17:05:27 +00:00
|
|
|
src = fetchurl {
|
2011-02-11 14:48:30 +00:00
|
|
|
url = "ftp://ftp.freedesktop.org/pub/mesa/${version}/MesaLib-${version}.tar.bz2";
|
2011-03-07 11:51:08 +00:00
|
|
|
md5 = "efe8da4d80c2a5d32a800770b8ce5dfa";
|
2007-02-26 17:05:27 +00:00
|
|
|
};
|
2010-01-13 12:43:17 +00:00
|
|
|
|
2011-03-07 21:16:34 +00:00
|
|
|
patches = [ ./swrast-settexbuffer.patch ];
|
|
|
|
|
2010-07-20 19:24:21 +00:00
|
|
|
configureFlags =
|
|
|
|
"--disable-gallium"
|
2011-02-11 14:48:30 +00: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 14:57:02 +00:00
|
|
|
|
2009-10-29 17:19:25 +00:00
|
|
|
buildInputs =
|
2011-03-07 11:51:08 +00:00
|
|
|
[ pkgconfig expat x11 libdrm xlibs.makedepend xlibs.glproto
|
2009-10-29 17:19:25 +00:00
|
|
|
xlibs.libXxf86vm xlibs.libXfixes xlibs.libXdamage xlibs.dri2proto
|
2011-03-07 11:51:08 +00:00
|
|
|
lipo talloc
|
2009-10-29 17:19:25 +00:00
|
|
|
];
|
2010-04-29 14:57:02 +00:00
|
|
|
|
2011-02-18 09:16:11 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-10-29 17:19:25 +00:00
|
|
|
passthru = { inherit libdrm; };
|
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";
|
2007-11-05 23:59:55 +00:00
|
|
|
};
|
2004-06-09 17:53:30 +00:00
|
|
|
}
|