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, pkgconfig, mesa }:
{ stdenv, fetchurl, pkgconfig, mesa_noglu }:
stdenv.mkDerivation rec {
name = "glu-9.0.0";
@@ -8,7 +8,10 @@ stdenv.mkDerivation rec {
sha256 = "04nzlil3a6fifcmb95iix3yl8mbxdl66b99s62yzq8m7g79x0yhz";
};
buildInputs = [ pkgconfig mesa ];
buildInputs = [ pkgconfig ];
propagatedBuildInputs = [ mesa_noglu ];
passthru = { inherit (mesa_noglu) libdrm; };
meta = {
description = "OpenGL utility library";