nixpkgs/pkgs/development/libraries/mesa/default.nix
Eelco Dolstra e05a069de9 * Mesa 7.4.1.
svn path=/nixpkgs/branches/stdenv-updates/; revision=15195
2009-04-20 18:08:51 +00:00

32 lines
785 B
Nix

{stdenv, fetchurl, pkgconfig, x11, xlibs, libdrm, expat}:
let
target =
if stdenv.system == "i686-linux" then "linux-dri-x86" else
if stdenv.system == "x86_64-linux" then "linux-dri-x86-64" else
abort "unsupported platform for Mesa"; # !!! change to throw, remove all the mesa asserts in all-packages.nix
in
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
];
passthru = {inherit libdrm;};
meta = {
description = "An open source implementation of OpenGL";
homepage = http://www.mesa3d.org/;
};
}