mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
freeglut: fix with new mesa -- depend on mesa_glu
This commit is contained in:
parent
539d9bc1af
commit
8bce732ad3
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, libXi, libXrandr, libXxf86vm, mesa, x11 }:
|
||||
{ stdenv, fetchurl, libXi, libXrandr, libXxf86vm, mesa, mesa_glu, 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 x11 ];
|
||||
buildInputs = [ libXi libXrandr libXxf86vm mesa mesa_glu x11 ];
|
||||
patches = [ ./0001-remove-typedefs-now-living-in-mesa.patch ];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user