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