scummvm: add support for FluidSynth

This gives by far the best music and general sound quality for games
with MIDI support.
This commit is contained in:
Peter Hoeg 2017-12-26 10:46:12 +08:00
parent 1258d9a491
commit 4d5837fc08

View file

@ -1,5 +1,5 @@
{ stdenv, nasm { stdenv, fetchurl, nasm
, fetchurl, SDL2, SDL2_net, freetype, zlib, libmpeg2, libjpeg, libmad, libogg, libvorbis, flac, alsaLib, mesa , alsaLib, flac, fluidsynth, freetype, libjpeg, libmad, libmpeg2, libogg, libvorbis, mesa, SDL2, zlib
, hostPlatform , hostPlatform
}: }:
@ -15,8 +15,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ nasm ]; nativeBuildInputs = [ nasm ];
buildInputs = [ buildInputs = [
SDL2 SDL2_net alsaLib freetype flac fluidsynth libjpeg libmad libmpeg2 libogg libvorbis mesa SDL2 zlib
freetype libjpeg libmpeg2 libmad libogg libvorbis flac alsaLib mesa zlib
]; ];
enableParallelBuilding = true; enableParallelBuilding = true;