Merge pull request #205243 from wegank/fluidsynth-darwin

Sandro 0f6cf57d 0ba5aac6

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