Made OpenGL a propagated dependency for mesa on darwin (fixes a host of building errors, especially in haskell pacakges). Also fixed freeglut on darwin.
Signed-off-by: Pamelloes <pamelloes@gmail.com>
This commit is contained in:
parent
d9739ebcc2
commit
8d278b47c1
|
@ -11,6 +11,14 @@ in stdenv.mkDerivation {
|
||||||
|
|
||||||
buildInputs = [ libXi libXrandr libXxf86vm mesa xlibsWrapper cmake ];
|
buildInputs = [ libXi libXrandr libXxf86vm mesa xlibsWrapper cmake ];
|
||||||
|
|
||||||
|
cmakeFlags = stdenv.lib.optionals stdenv.isDarwin [
|
||||||
|
"-DOPENGL_INCLUDE_DIR=${mesa}/include"
|
||||||
|
"-DOPENGL_gl_LIBRARY:FILEPATH=${mesa}/lib/libGL.dylib"
|
||||||
|
"-DOPENGL_glu_LIBRARY:FILEPATH=${mesa}/lib/libGLU.dylib"
|
||||||
|
"-DFREEGLUT_BUILD_DEMOS:BOOL=OFF"
|
||||||
|
"-DFREEGLUT_BUILD_STATIC:BOOL=OFF"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Create and manage windows containing OpenGL contexts";
|
description = "Create and manage windows containing OpenGL contexts";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
|
|
@ -25,6 +25,8 @@ let
|
||||||
libffi libvdpau
|
libffi libvdpau
|
||||||
] ++ stdenv.lib.optionals stdenv.isDarwin [ OpenGL apple_sdk.sdk Xplugin ];
|
] ++ stdenv.lib.optionals stdenv.isDarwin [ OpenGL apple_sdk.sdk Xplugin ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin [ OpenGL ];
|
||||||
|
|
||||||
postUnpack = ''
|
postUnpack = ''
|
||||||
ln -s darwin $sourceRoot/configs/current
|
ln -s darwin $sourceRoot/configs/current
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in New Issue