glfw3: cleanup dependencies, propagate mesa_noglu
This commit is contained in:
parent
d68e9b4938
commit
98ef62e51a
@ -1,5 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, cmake, mesa, libXrandr, libXi, libXxf86vm, libXfixes, xlibsWrapper
|
{ stdenv, lib, fetchFromGitHub, cmake, mesa_noglu, libXrandr, libXinerama, libXcursor, libX11
|
||||||
, libXinerama, libXcursor
|
|
||||||
, darwin, fixDarwinDylibNames
|
, darwin, fixDarwinDylibNames
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -16,12 +15,15 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
buildInputs = [
|
propagatedBuildInputs = [ mesa_noglu ];
|
||||||
cmake mesa libXrandr libXi libXxf86vm libXfixes xlibsWrapper
|
|
||||||
libXinerama libXcursor
|
|
||||||
] ++ stdenv.lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ Cocoa Kernel fixDarwinDylibNames ]);
|
|
||||||
|
|
||||||
cmakeFlags = "-DBUILD_SHARED_LIBS=ON";
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libX11 libXrandr libXinerama libXcursor
|
||||||
|
] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ Cocoa Kernel fixDarwinDylibNames ]);
|
||||||
|
|
||||||
|
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Multi-platform library for creating OpenGL contexts and managing input, including keyboard, mouse, joystick and time";
|
description = "Multi-platform library for creating OpenGL contexts and managing input, including keyboard, mouse, joystick and time";
|
||||||
|
Loading…
Reference in New Issue
Block a user