2015-04-26 15:05:56 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, audiofile, libcap
|
2013-01-31 21:44:31 +00:00
|
|
|
, openglSupport ? false, mesa ? null
|
2006-09-11 23:06:26 +00:00
|
|
|
, alsaSupport ? true, alsaLib ? null
|
2015-09-15 09:13:22 +00:00
|
|
|
, x11Support ? true, xlibsWrapper ? null, libXrandr ? null
|
2015-05-27 19:42:15 +00:00
|
|
|
, pulseaudioSupport ? true, libpulseaudio ? null
|
2015-10-28 23:44:30 +00:00
|
|
|
, OpenGL, CoreAudio, CoreServices, AudioUnit, Kernel, Cocoa
|
2006-09-11 23:06:26 +00:00
|
|
|
}:
|
2006-01-26 14:01:08 +00:00
|
|
|
|
2009-10-21 13:21:18 +00:00
|
|
|
# OSS is no longer supported, for it's much crappier than ALSA and
|
|
|
|
# PulseAudio.
|
2015-03-05 20:55:59 +00:00
|
|
|
assert (stdenv.isLinux && !(stdenv ? cross)) -> alsaSupport || pulseaudioSupport;
|
2009-10-21 13:21:18 +00:00
|
|
|
|
2013-01-31 21:44:31 +00:00
|
|
|
assert openglSupport -> (mesa != null && x11Support);
|
2015-09-15 09:13:22 +00:00
|
|
|
assert x11Support -> (xlibsWrapper != null && libXrandr != null);
|
2006-09-11 23:06:26 +00:00
|
|
|
assert alsaSupport -> alsaLib != null;
|
2015-05-27 19:42:15 +00:00
|
|
|
assert pulseaudioSupport -> libpulseaudio != null;
|
2004-09-26 18:12:51 +00:00
|
|
|
|
2015-06-08 09:13:46 +00:00
|
|
|
let
|
|
|
|
inherit (stdenv.lib) optional optionals;
|
|
|
|
in
|
2009-10-21 13:21:22 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2013-09-06 01:47:49 +00:00
|
|
|
version = "1.2.15";
|
|
|
|
name = "SDL-${version}";
|
2009-10-21 13:21:22 +00:00
|
|
|
|
2004-09-26 18:12:51 +00:00
|
|
|
src = fetchurl {
|
2013-09-06 01:47:49 +00:00
|
|
|
url = "http://www.libsdl.org/release/${name}.tar.gz";
|
2013-01-30 15:44:55 +00:00
|
|
|
sha256 = "005d993xcac8236fpvd1iawkz4wqjybkpn8dbwaliqz5jfkidlyn";
|
2004-09-26 18:12:51 +00:00
|
|
|
};
|
2009-10-21 13:21:22 +00:00
|
|
|
|
2015-07-26 22:25:53 +00:00
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
|
2015-06-08 09:13:46 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2009-05-11 21:11:25 +00:00
|
|
|
# Since `libpulse*.la' contain `-lgdbm', PulseAudio must be propagated.
|
2015-06-08 09:13:46 +00:00
|
|
|
propagatedBuildInputs =
|
2015-09-15 09:13:22 +00:00
|
|
|
optionals x11Support [ xlibsWrapper libXrandr ] ++
|
2015-06-08 09:13:46 +00:00
|
|
|
optional alsaSupport alsaLib ++
|
|
|
|
optional stdenv.isLinux libcap ++
|
|
|
|
optional openglSupport mesa ++
|
|
|
|
optional pulseaudioSupport libpulseaudio;
|
2009-05-11 21:11:25 +00:00
|
|
|
|
2014-03-12 05:36:34 +00:00
|
|
|
buildInputs = let
|
|
|
|
notMingw = !(stdenv ? cross) || stdenv.cross.libc != "msvcrt";
|
2015-10-28 23:44:30 +00:00
|
|
|
in optional notMingw audiofile
|
|
|
|
++ optionals stdenv.isDarwin [ OpenGL CoreAudio CoreServices AudioUnit Kernel Cocoa ];
|
2009-05-11 19:57:42 +00: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'.
|
2014-03-12 05:36:34 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-oss"
|
|
|
|
"--disable-video-x11-xme"
|
|
|
|
"--disable-x11-shared"
|
|
|
|
"--disable-alsa-shared"
|
|
|
|
"--enable-rpath"
|
|
|
|
"--disable-pulseaudio-shared"
|
|
|
|
"--disable-osmesa-shared"
|
|
|
|
] ++ stdenv.lib.optionals (stdenv ? cross) ([
|
|
|
|
"--without-x"
|
|
|
|
] ++ stdenv.lib.optional alsaSupport "--with-alsa-prefix=${alsaLib}/lib");
|
2010-08-11 20:14:25 +00:00
|
|
|
|
2015-03-05 20:55:59 +00:00
|
|
|
# Fix a build failure on OS X Mavericks
|
|
|
|
# Ticket: https://bugzilla.libsdl.org/show_bug.cgi?id=2085
|
|
|
|
patches = stdenv.lib.optional stdenv.isDarwin [ (fetchurl {
|
|
|
|
url = "http://bugzilla-attachments.libsdl.org/attachment.cgi?id=1320";
|
|
|
|
sha1 = "3137feb503a89a8d606405373905b92dcf7e293b";
|
|
|
|
}) ];
|
|
|
|
|
2014-03-12 05:36:34 +00:00
|
|
|
crossAttrs =stdenv.lib.optionalAttrs (stdenv.cross.libc == "libSystem") {
|
|
|
|
patches = let
|
|
|
|
f = rev: sha256: fetchurl {
|
|
|
|
url = "http://hg.libsdl.org/SDL/raw-rev/${rev}";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
in [
|
|
|
|
(f "e9466ead70e5" "0ygir3k83d0vxp7s3k48jn3j8n2bnv9wm6613wpx3ybnjrxabrip")
|
|
|
|
(f "bbfb41c13a87" "17v29ybjifvka19m8qf14rjc43nfdwk9v9inaizznarhb17amlnv")
|
|
|
|
];
|
|
|
|
postPatch = ''
|
|
|
|
sed -i -e 's/ *-fpascal-strings//' configure
|
|
|
|
'';
|
2010-08-11 20:14:25 +00:00
|
|
|
};
|
2008-06-14 20:46:34 +00:00
|
|
|
|
|
|
|
passthru = {inherit openglSupport;};
|
|
|
|
|
2013-09-06 01:47:49 +00:00
|
|
|
meta = with stdenv.lib; {
|
2008-06-14 20:46:34 +00:00
|
|
|
description = "A cross-platform multimedia library";
|
2013-09-06 01:47:49 +00:00
|
|
|
homepage = http://www.libsdl.org/;
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2015-03-05 20:55:59 +00:00
|
|
|
platforms = platforms.unix;
|
2008-06-14 20:46:34 +00:00
|
|
|
};
|
2004-09-26 18:12:51 +00:00
|
|
|
}
|