2012-01-16 09:48:33 -08:00
|
|
|
{ stdenv, fetchurl, flex, bison, pkgconfig, libdrm, file, expat, makedepend
|
|
|
|
, libXxf86vm, libXfixes, libXdamage, glproto, dri2proto, libX11, libxcb, libXext
|
2012-01-16 09:50:54 -08:00
|
|
|
, libXt, udev, enableTextureFloats ? false
|
2012-04-23 08:47:31 -07:00
|
|
|
, python, libxml2Python }:
|
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-09-26 12:17:01 -07:00
|
|
|
let version = "8.0.4"; 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-09-26 12:17:01 -07:00
|
|
|
md5 = "d546f988adfdf986cff45b1efa2d8a46";
|
2007-02-26 09:05:27 -08:00
|
|
|
};
|
2010-01-13 04:43:17 -08:00
|
|
|
|
2012-05-16 14:55:18 -07:00
|
|
|
patches =
|
|
|
|
stdenv.lib.optional (stdenv.system == "mips64el-linux") ./mips_wmb.patch;
|
2011-03-07 13:16:34 -08:00
|
|
|
|
2012-01-16 09:48:33 -08:00
|
|
|
prePatch = "patchShebangs .";
|
2011-07-14 05:22:55 -07:00
|
|
|
|
2010-07-20 12:24:21 -07:00
|
|
|
configureFlags =
|
2012-05-16 14:55:18 -07:00
|
|
|
" --enable-gles1 --enable-gles2 --enable-gallium-egl"
|
2012-01-21 10:47:37 -08:00
|
|
|
+ " --with-gallium-drivers=i915,nouveau,r600,svga,swrast"
|
2012-01-16 09:48:33 -08:00
|
|
|
# Texture floats are patented, see docs/patents.txt
|
|
|
|
+ stdenv.lib.optionalString enableTextureFloats " --enable-texture-float";
|
|
|
|
|
|
|
|
buildInputs = [ expat libdrm libXxf86vm libXfixes libXdamage glproto dri2proto
|
2012-04-23 08:47:31 -07:00
|
|
|
libxml2Python libX11 libXext libxcb libXt udev ];
|
2012-01-16 09:48:33 -08:00
|
|
|
|
|
|
|
buildNativeInputs = [ pkgconfig python makedepend file 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
|
|
|
}
|