* Build the i810 driver. Only depend on the Mesa headers, not all of Mesa.

svn path=/nixpkgs/trunk/; revision=8060
This commit is contained in:
Eelco Dolstra
2007-02-26 23:10:25 +00:00
parent 7edbaaaff2
commit ba443448e8
5 changed files with 26 additions and 9 deletions
@@ -0,0 +1,10 @@
{stdenv, mesaSrc}:
stdenv.mkDerivation {
name = "mesa-headers-6.5.2"; # !!! keep up-to-date
buildCommand = "
unpackFile ${mesaSrc}
ensureDir $out/include
cp -prvd Mesa-*/include/GL $out/include/
";
}