2013-07-04 17:59:43 +00:00
|
|
|
{ stdenv, fetchurl, SDL2, libogg, libvorbis, enableNativeMidi ? false }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-05-09 23:24:13 +00:00
|
|
|
name = "SDL2_mixer-2.0.1";
|
2013-07-04 17:59:43 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.libsdl.org/projects/SDL_mixer/release/${name}.tar.gz";
|
2016-05-09 23:24:13 +00:00
|
|
|
sha256 = "0pv9jzjpcjlbiaybvwrb4avmv46qk7iqxlnqrd2dfj82c4mgc92s";
|
2013-07-04 17:59:43 +00:00
|
|
|
};
|
|
|
|
|
2014-05-17 11:23:20 +00:00
|
|
|
propagatedBuildInputs = [SDL2 libogg libvorbis];
|
2013-07-04 17:59:43 +00:00
|
|
|
|
|
|
|
configureFlags = "--disable-music-ogg-shared" + stdenv.lib.optionalString enableNativeMidi "--enable-music-native-midi-gpl";
|
|
|
|
|
|
|
|
postInstall = "ln -s $out/include/SDL2/SDL_mixer.h $out/include/";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "SDL multi-channel audio mixer library";
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2013-07-04 17:59:43 +00:00
|
|
|
};
|
|
|
|
}
|