Merge pull request #70152 from mujx/proteaaudio-override
haskellPackages.proteaaudio: link with the AudioToolbox framework on Darwin
This commit is contained in:
commit
f6f043f72c
|
@ -104,6 +104,11 @@ self: super: builtins.intersectAttrs super {
|
||||||
then addExtraLibrary super.OpenAL pkgs.darwin.apple_sdk.frameworks.OpenAL
|
then addExtraLibrary super.OpenAL pkgs.darwin.apple_sdk.frameworks.OpenAL
|
||||||
else super.OpenAL;
|
else super.OpenAL;
|
||||||
|
|
||||||
|
# Ensure the necessary frameworks for Darwin.
|
||||||
|
proteaaudio = if pkgs.stdenv.isDarwin
|
||||||
|
then addExtraLibrary super.proteaaudio pkgs.darwin.apple_sdk.frameworks.AudioToolbox
|
||||||
|
else super.proteaaudio;
|
||||||
|
|
||||||
ghcid = enableSeparateBinOutput super.ghcid;
|
ghcid = enableSeparateBinOutput super.ghcid;
|
||||||
|
|
||||||
hzk = overrideCabal super.hzk (drv: {
|
hzk = overrideCabal super.hzk (drv: {
|
||||||
|
|
Loading…
Reference in New Issue