mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
SDL: propagate X11 libs even when building statically against them on Darwin
Packages like SDL_image, SDL_mixer, SDL_net, SDL_ttf depend on this.
This reverts a piece of 19130ebc5d
.
This commit is contained in:
parent
19130ebc5d
commit
2e3077c907
@ -48,7 +48,7 @@ stdenv.mkDerivation rec {
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
|
||||
propagatedBuildInputs = [ ]
|
||||
++ optionals (x11Support && !stdenv.isDarwin) [ libXext libICE libXrandr ]
|
||||
++ optionals x11Support [ libXext libICE libXrandr ]
|
||||
++ optional stdenv.isLinux libcap
|
||||
++ optionals openglSupport [ libGL libGLU ]
|
||||
++ optional alsaSupport alsaLib
|
||||
@ -56,7 +56,6 @@ stdenv.mkDerivation rec {
|
||||
++ optional stdenv.isDarwin Cocoa;
|
||||
|
||||
buildInputs = [ libiconv ]
|
||||
++ optionals (x11Support && stdenv.isDarwin) [ libXext libICE libXrandr ]
|
||||
++ optional (!hostPlatform.isMinGW) audiofile
|
||||
++ optionals stdenv.isDarwin [ AudioUnit CoreAudio CoreServices Kernel OpenGL ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user