nixpkgs/pkgs/development/libraries/mesa/default.nix
Eelco Dolstra 0ebb410014 * Remove all the mesaSupported assertions.
svn path=/nixpkgs/branches/stdenv-updates/; revision=15202
2009-04-20 22:06:12 +00:00

27 lines
654 B
Nix

{stdenv, fetchurl, pkgconfig, x11, xlibs, libdrm, expat}:
if stdenv.system != "i686-linux" && stdenv.system != "x86_64-linux" then
throw "unsupported platform for Mesa"
else
stdenv.mkDerivation {
name = "mesa-7.4.1";
src = fetchurl {
url = mirror://sourceforge/mesa3d/MesaLib-7.4.1.tar.bz2;
md5 = "423260578b653818ba66c2fcbde6d7ad";
};
buildInputs = [
pkgconfig expat x11 libdrm xlibs.glproto
xlibs.libXxf86vm xlibs.libXfixes xlibs.libXdamage xlibs.dri2proto
];
passthru = {inherit libdrm;};
meta = {
description = "An open source implementation of OpenGL";
homepage = http://www.mesa3d.org/;
};
}