haskellPackages.hmidi: provide necessary frameworks on darwin

This commit is contained in:
sternenseemann 2023-02-14 15:33:04 +01:00
parent c0d7cc23b4
commit ea113b94f4

View File

@ -40,6 +40,13 @@ self: super: ({
darwin.apple_sdk.frameworks.ApplicationServices
] super.apecs-physics;
# Framework deps are hidden behind a flag
hmidi = addExtraLibraries [
darwin.apple_sdk.frameworks.CoreFoundation
darwin.apple_sdk.frameworks.CoreAudio
darwin.apple_sdk.frameworks.CoreMIDI
] super.hmidi;
# "erf table" test fails on Darwin
# https://github.com/bos/math-functions/issues/63
math-functions = dontCheck super.math-functions;