2017-08-27 06:34:08 +01:00
|
|
|
{ stdenv, lib, fetchurl, autoreconfHook, pkgconfig, which
|
2020-06-08 19:53:09 +01:00
|
|
|
, SDL2, libogg, libvorbis, smpeg2, flac, libmodplug, opusfile, mpg123
|
2018-01-20 15:26:21 +00:00
|
|
|
, CoreServices, AudioUnit, AudioToolbox
|
2017-08-26 22:54:37 +01:00
|
|
|
, enableNativeMidi ? false, fluidsynth ? null }:
|
2013-07-04 18:59:43 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "SDL2_mixer";
|
2018-11-08 21:39:47 +00:00
|
|
|
version = "2.0.4";
|
2013-07-04 18:59:43 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://www.libsdl.org/projects/SDL_mixer/release/${pname}-${version}.tar.gz";
|
2018-11-08 21:39:47 +00:00
|
|
|
sha256 = "0694vsz5bjkcdgfdra6x9fq8vpzrl8m6q96gh58df7065hw5mkxl";
|
2013-07-04 18:59:43 +01:00
|
|
|
};
|
|
|
|
|
2017-10-26 02:20:29 +01:00
|
|
|
preAutoreconf = ''
|
|
|
|
aclocal
|
|
|
|
'';
|
|
|
|
|
2017-08-27 06:34:08 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig which ];
|
2017-08-26 22:54:37 +01:00
|
|
|
|
2018-01-20 15:26:21 +00:00
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices AudioUnit AudioToolbox ];
|
|
|
|
|
2020-06-08 19:53:09 +01:00
|
|
|
propagatedBuildInputs = [ SDL2 libogg libvorbis fluidsynth smpeg2 flac libmodplug opusfile mpg123 ];
|
2017-08-26 22:54:37 +01:00
|
|
|
|
2017-08-27 06:34:08 +01:00
|
|
|
configureFlags = [ "--disable-music-ogg-shared" ]
|
2018-06-07 00:18:00 +01:00
|
|
|
++ lib.optional enableNativeMidi "--enable-music-native-midi-gpl"
|
|
|
|
++ lib.optionals stdenv.isDarwin [ "--disable-sdltest" "--disable-smpegtest" ];
|
2013-07-04 18:59:43 +01:00
|
|
|
|
2016-08-22 04:24:32 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-07-04 18:59:43 +01:00
|
|
|
description = "SDL multi-channel audio mixer library";
|
2018-01-20 15:26:21 +00:00
|
|
|
platforms = platforms.unix;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.libsdl.org/projects/SDL_mixer/";
|
2017-03-08 12:45:22 +00:00
|
|
|
maintainers = with maintainers; [ MP2E ];
|
2016-08-22 04:24:32 +01:00
|
|
|
license = licenses.zlib;
|
2013-07-04 18:59:43 +01:00
|
|
|
};
|
|
|
|
}
|