2014-10-23 01:31:30 +01:00
|
|
|
{ stdenv, fetchurl, SDL, libogg, libvorbis, smpeg, enableNativeMidi ? false, fluidsynth ? null }:
|
2009-03-03 13:27:40 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-09-06 02:47:49 +01:00
|
|
|
pname = "SDL_mixer";
|
|
|
|
version = "1.2.12";
|
|
|
|
name = "${pname}-${version}";
|
2006-09-12 01:15:05 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-09-06 02:47:49 +01:00
|
|
|
url = "http://www.libsdl.org/projects/${pname}/release/${name}.tar.gz";
|
|
|
|
sha256 = "0alrhqgm40p4c92s26mimg9cm1y7rzr6m0p49687jxd9g6130i0n";
|
2006-09-12 01:15:05 +01:00
|
|
|
};
|
2008-02-06 21:17:42 +00:00
|
|
|
|
2014-10-23 01:31:30 +01:00
|
|
|
buildInputs = [SDL libogg libvorbis fluidsynth smpeg];
|
2008-02-06 21:17:42 +00:00
|
|
|
|
2014-07-15 19:32:23 +01:00
|
|
|
configureFlags = "--disable-music-ogg-shared" + stdenv.lib.optionalString enableNativeMidi " --enable-music-native-midi-gpl";
|
2008-02-06 21:17:42 +00:00
|
|
|
|
2009-03-03 13:27:40 +00:00
|
|
|
postInstall = "ln -s $out/include/SDL/SDL_mixer.h $out/include/";
|
2008-02-06 21:17:42 +00:00
|
|
|
|
2013-09-06 02:47:49 +01:00
|
|
|
meta = with stdenv.lib; {
|
2009-03-03 13:27:40 +00:00
|
|
|
description = "SDL multi-channel audio mixer library";
|
2013-09-06 02:47:49 +01:00
|
|
|
homepage = http://www.libsdl.org/projects/SDL_mixer/;
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2014-08-08 16:58:34 +01:00
|
|
|
platforms = platforms.linux;
|
2008-02-06 21:17:42 +00:00
|
|
|
};
|
2009-03-03 13:27:40 +00:00
|
|
|
}
|