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