mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
openal: fix darwin builds
This commit is contained in:
parent
f3336a122a
commit
d085a649c2
@ -1,6 +1,7 @@
|
||||
{ stdenv, fetchurl, cmake
|
||||
, alsaSupport ? true, alsaLib ? null
|
||||
, pulseSupport ? true, libpulseaudio ? null
|
||||
, alsaSupport ? !stdenv.isDarwin, alsaLib ? null
|
||||
, pulseSupport ? !stdenv.isDarwin, libpulseaudio ? null
|
||||
, CoreServices, AudioUnit, AudioToolbox
|
||||
}:
|
||||
|
||||
with stdenv.lib;
|
||||
@ -19,7 +20,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ cmake ]
|
||||
++ optional alsaSupport alsaLib
|
||||
++ optional pulseSupport libpulseaudio;
|
||||
++ optional pulseSupport libpulseaudio
|
||||
++ optional stdenv.isDarwin [ CoreServices AudioUnit AudioToolbox ];
|
||||
|
||||
NIX_LDFLAGS = []
|
||||
++ optional alsaSupport "-lasound"
|
||||
@ -30,5 +32,6 @@ stdenv.mkDerivation rec {
|
||||
homepage = http://kcat.strangesoft.net/openal.html;
|
||||
license = licenses.lgpl2;
|
||||
maintainers = with maintainers; [ftrvxmtrx];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
@ -8221,7 +8221,9 @@ let
|
||||
oniguruma = callPackage ../development/libraries/oniguruma { };
|
||||
|
||||
openal = openalSoft;
|
||||
openalSoft = callPackage ../development/libraries/openal-soft { };
|
||||
openalSoft = callPackage ../development/libraries/openal-soft {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreServices AudioUnit AudioToolbox;
|
||||
};
|
||||
|
||||
openbabel = callPackage ../development/libraries/openbabel { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user