2011-06-30 17:12:26 +02:00
|
|
|
{ stdenv, fetchurl, SDL, libogg, libvorbis, enableNativeMidi ? false }:
|
2009-03-03 14:27:40 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2008-02-06 22:17:42 +01:00
|
|
|
pname = "SDL_mixer";
|
|
|
|
version = "1.2.8";
|
|
|
|
|
|
|
|
name = "${pname}-${version}";
|
2006-09-12 02:15:05 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2008-02-06 22:17:42 +01:00
|
|
|
url = "http://www.libsdl.org/projects/${pname}/release/${name}.tar.gz";
|
|
|
|
sha256 = "a8222a274778ff16d0e3ee49a30db27a48a4d357169a915fc599a764e405e0b6";
|
2006-09-12 02:15:05 +02:00
|
|
|
};
|
2008-02-06 22:17:42 +01:00
|
|
|
|
2006-09-12 17:23:28 +02:00
|
|
|
buildInputs = [SDL libogg libvorbis];
|
2008-02-06 22:17:42 +01:00
|
|
|
|
2011-06-30 17:12:26 +02:00
|
|
|
configureFlags = "--disable-music-ogg-shared" + stdenv.lib.optionalString enableNativeMidi "--enable-music-native-midi-gpl";
|
2008-02-06 22:17:42 +01:00
|
|
|
|
2009-03-03 14:27:40 +01:00
|
|
|
postInstall = "ln -s $out/include/SDL/SDL_mixer.h $out/include/";
|
2008-02-06 22:17:42 +01:00
|
|
|
|
|
|
|
meta = {
|
2009-03-03 14:27:40 +01:00
|
|
|
description = "SDL multi-channel audio mixer library";
|
2008-02-06 22:17:42 +01:00
|
|
|
};
|
2009-03-03 14:27:40 +01:00
|
|
|
}
|