mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
libao: add dependencies for Darwin frameworks
This commit is contained in:
parent
37e1a9c844
commit
2d7375e649
@ -1,4 +1,5 @@
|
||||
{ lib, stdenv, fetchurl, pkgconfig, libpulseaudio, alsaLib, libcap
|
||||
, CoreAudio, CoreServices, AudioUnit
|
||||
, usePulseAudio }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -12,7 +13,8 @@ stdenv.mkDerivation rec {
|
||||
buildInputs =
|
||||
[ pkgconfig ] ++
|
||||
lib.optional stdenv.isLinux (if usePulseAudio then libpulseaudio else alsaLib) ++
|
||||
lib.optional stdenv.isLinux libcap;
|
||||
lib.optional stdenv.isLinux libcap ++
|
||||
lib.optionals stdenv.isDarwin [ CoreAudio CoreServices AudioUnit ];
|
||||
|
||||
meta = {
|
||||
longDescription = ''
|
||||
|
@ -7074,6 +7074,7 @@ let
|
||||
|
||||
libao = callPackage ../development/libraries/libao {
|
||||
usePulseAudio = config.pulseaudio or true;
|
||||
inherit (darwin.apple_sdk.frameworks) CoreAudio CoreServices AudioUnit;
|
||||
};
|
||||
|
||||
libabw = callPackage ../development/libraries/libabw { };
|
||||
|
Loading…
Reference in New Issue
Block a user