mesa: make the attribute include the GL/glu.h

Packages expect it and it used to be true until mesa-9*.
This seems to be the easiest fix, otherwise many changes would be needed.
This commit is contained in:
Vladimír Čunát
2013-01-31 22:44:31 +01:00
parent d85a587fdd
commit aa0fb73064
4 changed files with 12 additions and 10 deletions
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, libXi, libXrandr, libXxf86vm, mesa, mesa_glu, x11 }:
{ stdenv, fetchurl, libXi, libXrandr, libXxf86vm, mesa, x11 }:
stdenv.mkDerivation {
name = "freeglut-2.8.0";
@@ -10,6 +10,6 @@ stdenv.mkDerivation {
configureFlags = "--" + (if stdenv.isDarwin then "disable" else "enable") + "-warnings";
buildInputs = [ libXi libXrandr libXxf86vm mesa mesa_glu x11 ];
buildInputs = [ libXi libXrandr libXxf86vm mesa x11 ];
patches = [ ./0001-remove-typedefs-now-living-in-mesa.patch ];
}