Merge pull request #205243 from wegank/fluidsynth-darwin

authored by

Sandro and committed by
GitHub
0f6cf57d 0ba5aac6

+5 -1
+5 -1
pkgs/applications/audio/fluidsynth/default.nix
··· 20 20 ++ lib.optionals stdenv.isLinux [ alsa-lib libpulseaudio ] 21 21 ++ lib.optionals stdenv.isDarwin [ AudioUnit CoreAudio CoreMIDI CoreServices ]; 22 22 23 - cmakeFlags = [ "-Denable-framework=off" ]; 23 + cmakeFlags = [ 24 + "-Denable-framework=off" 25 + # set CMAKE_INSTALL_NAME_DIR to correct value on darwin 26 + "-DCMAKE_INSTALL_LIBDIR=lib" 27 + ]; 24 28 25 29 meta = with lib; { 26 30 description = "Real-time software synthesizer based on the SoundFont 2 specifications";