2015-04-26 16:05:56 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, audiofile, libcap
|
2013-01-31 21:44:31 +00:00
|
|
|
, openglSupport ? false, mesa ? null
|
2006-09-12 00:06:26 +01:00
|
|
|
, alsaSupport ? true, alsaLib ? null
|
2010-08-11 21:14:25 +01:00
|
|
|
, x11Support ? true, x11 ? null, libXrandr ? null
|
2015-05-27 20:42:15 +01:00
|
|
|
, pulseaudioSupport ? true, libpulseaudio ? null
|
2006-09-12 00:06:26 +01:00
|
|
|
}:
|
2006-01-26 14:01:08 +00:00
|
|
|
|
2009-10-21 14:21:18 +01: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 14:21:18 +01:00
|
|
|
|
2013-01-31 21:44:31 +00:00
|
|
|
assert openglSupport -> (mesa != null && x11Support);
|
2010-08-11 21:14:25 +01:00
|
|
|
assert x11Support -> (x11 != null && libXrandr != null);
|
2006-09-12 00:06:26 +01:00
|
|
|
assert alsaSupport -> alsaLib != null;
|
2015-05-27 20:42:15 +01:00
|
|
|
assert pulseaudioSupport -> libpulseaudio != null;
|
2004-09-26 19:12:51 +01:00
|
|
|
|
2009-10-21 14:21:22 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-09-06 02:47:49 +01:00
|
|
|
version = "1.2.15";
|
|
|
|
name = "SDL-${version}";
|
2009-10-21 14:21:22 +01:00
|
|
|
|
2004-09-26 19:12:51 +01:00
|
|
|
src = fetchurl {
|
2013-09-06 02:47:49 +01:00
|
|
|
url = "http://www.libsdl.org/release/${name}.tar.gz";
|
2013-01-30 15:44:55 +00:00
|
|
|
sha256 = "005d993xcac8236fpvd1iawkz4wqjybkpn8dbwaliqz5jfkidlyn";
|
2004-09-26 19:12:51 +01:00
|
|
|
};
|
2009-10-21 14:21:22 +01:00
|
|
|
|
2009-05-11 22:11:25 +01:00
|
|
|
# Since `libpulse*.la' contain `-lgdbm', PulseAudio must be propagated.
|
2014-02-24 04:55:29 +00:00
|
|
|
propagatedNativeBuildInputs =
|
|
|
|
stdenv.lib.optionals x11Support [ x11 libXrandr ] ++
|
2014-04-22 04:54:39 +01:00
|
|
|
stdenv.lib.optional alsaSupport alsaLib ++
|
2015-05-27 20:42:15 +01:00
|
|
|
stdenv.lib.optional pulseaudioSupport libpulseaudio;
|
2009-05-11 22:11:25 +01:00
|
|
|
|
2014-03-12 05:36:34 +00:00
|
|
|
buildInputs = let
|
|
|
|
notMingw = !(stdenv ? cross) || stdenv.cross.libc != "msvcrt";
|
2015-04-29 22:37:39 +01:00
|
|
|
in stdenv.lib.optional stdenv.isLinux libcap
|
2015-04-26 16:05:56 +01:00
|
|
|
++ (stdenv.lib.optional notMingw audiofile);
|
2014-03-12 05:36:34 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ] ++
|
2014-04-22 04:54:39 +01:00
|
|
|
stdenv.lib.optional openglSupport [ mesa ];
|
2009-05-11 20:57:42 +01: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 21:14:25 +01: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 21:14:25 +01:00
|
|
|
};
|
2008-06-14 21:46:34 +01:00
|
|
|
|
|
|
|
passthru = {inherit openglSupport;};
|
|
|
|
|
2013-09-06 02:47:49 +01:00
|
|
|
meta = with stdenv.lib; {
|
2008-06-14 21:46:34 +01:00
|
|
|
description = "A cross-platform multimedia library";
|
2013-09-06 02:47:49 +01:00
|
|
|
homepage = http://www.libsdl.org/;
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2015-03-05 20:55:59 +00:00
|
|
|
platforms = platforms.unix;
|
2008-06-14 21:46:34 +01:00
|
|
|
};
|
2004-09-26 19:12:51 +01:00
|
|
|
}
|