2009-05-11 21:57:42 +02:00
|
|
|
{ stdenv, fetchurl, x11, libXrandr, pkgconfig
|
|
|
|
, openglSupport ? false, mesa ? null
|
2006-09-12 01:06:26 +02:00
|
|
|
, alsaSupport ? true, alsaLib ? null
|
2009-05-11 21:57:42 +02:00
|
|
|
, pulseaudioSupport ? true, pulseaudio ? null
|
2006-09-12 01:06:26 +02:00
|
|
|
}:
|
2006-01-26 15:01:08 +01:00
|
|
|
|
2009-10-21 15:21:18 +02:00
|
|
|
# OSS is no longer supported, for it's much crappier than ALSA and
|
|
|
|
# PulseAudio.
|
|
|
|
assert alsaSupport || pulseaudioSupport;
|
|
|
|
|
2006-01-26 15:01:08 +01:00
|
|
|
assert openglSupport -> mesa != null;
|
2006-09-12 01:06:26 +02:00
|
|
|
assert alsaSupport -> alsaLib != null;
|
2009-05-11 21:57:42 +02:00
|
|
|
assert pulseaudioSupport -> pulseaudio != null;
|
2004-09-26 20:12:51 +02:00
|
|
|
|
2009-10-21 15:21:22 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "SDL-1.2.14";
|
|
|
|
|
2004-09-26 20:12:51 +02:00
|
|
|
src = fetchurl {
|
2009-10-21 15:21:22 +02:00
|
|
|
url = "http://www.libsdl.org/release/${name}.tar.gz";
|
|
|
|
sha256 = "1dnrxr18cyar0xd13dca7h8wp1fin4n3iyncxfq6pjrlf0l7x4jx";
|
2004-09-26 20:12:51 +02:00
|
|
|
};
|
2009-10-21 15:21:22 +02:00
|
|
|
|
2009-05-11 23:11:25 +02:00
|
|
|
# Since `libpulse*.la' contain `-lgdbm', PulseAudio must be propagated.
|
|
|
|
propagatedBuildInputs = [ x11 libXrandr ] ++
|
|
|
|
stdenv.lib.optional pulseaudioSupport pulseaudio;
|
|
|
|
|
2009-05-11 21:57:42 +02:00
|
|
|
buildInputs = [ pkgconfig ] ++
|
2008-06-14 22:46:34 +02:00
|
|
|
stdenv.lib.optional openglSupport mesa ++
|
2009-05-11 23:11:25 +02:00
|
|
|
stdenv.lib.optional alsaSupport alsaLib;
|
2009-05-11 21:57:42 +02:00
|
|
|
|
|
|
|
# XXX: By default, SDL wants to dlopen() PulseAudio, in which case
|
|
|
|
# we must arrange to add it to its RPATH; however, `patchelf' seems
|
|
|
|
# to fail at doing this, hence `--disable-pulseaudio-shared'.
|
2008-06-14 22:46:34 +02:00
|
|
|
configureFlags = ''
|
2009-10-21 15:21:18 +02:00
|
|
|
--disable-oss
|
2009-05-11 21:57:42 +02:00
|
|
|
--disable-x11-shared --disable-alsa-shared --enable-rpath --disable-pulseaudio-shared
|
2006-09-12 02:15:05 +02:00
|
|
|
${if alsaSupport then "--with-alsa-prefix=${alsaLib}/lib" else ""}
|
2008-06-14 22:46:34 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = {inherit openglSupport;};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A cross-platform multimedia library";
|
|
|
|
homepage = http://www.libsdl.org/;
|
|
|
|
};
|
2004-09-26 20:12:51 +02:00
|
|
|
}
|