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