2017-05-28 20:52:30 +02:00
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, audiofile, libcap, libiconv
|
2018-02-24 13:59:47 +01:00
|
|
|
, openglSupport ? false, libGL, libGLU
|
2016-08-22 05:24:00 +02:00
|
|
|
, alsaSupport ? true, alsaLib
|
2017-06-28 22:00:28 +02:00
|
|
|
, x11Support ? hostPlatform == buildPlatform, libXext, libICE, libXrandr
|
2016-08-22 05:24:00 +02:00
|
|
|
, pulseaudioSupport ? true, libpulseaudio
|
2015-10-29 00:44:30 +01:00
|
|
|
, OpenGL, CoreAudio, CoreServices, AudioUnit, Kernel, Cocoa
|
2017-06-28 22:00:28 +02:00
|
|
|
, hostPlatform, buildPlatform
|
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.
|
2017-06-28 22:00:28 +02:00
|
|
|
assert hostPlatform.isLinux -> alsaSupport || pulseaudioSupport;
|
2009-10-21 15:21:18 +02:00
|
|
|
|
2015-06-08 11:13:46 +02:00
|
|
|
let
|
|
|
|
inherit (stdenv.lib) optional optionals;
|
|
|
|
in
|
2009-10-21 15:21:22 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2013-09-06 03:47:49 +02:00
|
|
|
name = "SDL-${version}";
|
2016-08-22 05:24:00 +02:00
|
|
|
version = "1.2.15";
|
2009-10-21 15:21:22 +02:00
|
|
|
|
2004-09-26 20:12:51 +02:00
|
|
|
src = fetchurl {
|
2013-09-06 03:47:49 +02:00
|
|
|
url = "http://www.libsdl.org/release/${name}.tar.gz";
|
2013-01-30 16:44:55 +01:00
|
|
|
sha256 = "005d993xcac8236fpvd1iawkz4wqjybkpn8dbwaliqz5jfkidlyn";
|
2004-09-26 20:12:51 +02:00
|
|
|
};
|
2009-10-21 15:21:22 +02:00
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-11 16:21:43 +02:00
|
|
|
outputBin = "dev"; # sdl-config
|
2015-07-27 00:25:53 +02:00
|
|
|
|
2015-06-08 11:13:46 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2009-05-11 23:11:25 +02:00
|
|
|
# Since `libpulse*.la' contain `-lgdbm', PulseAudio must be propagated.
|
2015-06-08 11:13:46 +02:00
|
|
|
propagatedBuildInputs =
|
2016-08-22 05:24:00 +02:00
|
|
|
optionals x11Support [ libXext libICE libXrandr ] ++
|
2015-06-08 11:13:46 +02:00
|
|
|
optional alsaSupport alsaLib ++
|
|
|
|
optional stdenv.isLinux libcap ++
|
2018-02-24 13:59:47 +01:00
|
|
|
optionals openglSupport [ libGL libGLU ] ++
|
2016-02-05 18:53:26 +01:00
|
|
|
optional pulseaudioSupport libpulseaudio ++
|
|
|
|
optional stdenv.isDarwin Cocoa;
|
2009-05-11 23:11:25 +02:00
|
|
|
|
2014-03-12 06:36:34 +01:00
|
|
|
buildInputs = let
|
2017-06-27 01:14:45 +02:00
|
|
|
notMingw = !hostPlatform.isMinGW;
|
2015-10-29 00:44:30 +01:00
|
|
|
in optional notMingw audiofile
|
2017-05-28 20:52:30 +02:00
|
|
|
++ optionals stdenv.isDarwin [ OpenGL CoreAudio CoreServices AudioUnit Kernel ]
|
|
|
|
++ [ libiconv ];
|
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'.
|
2014-03-12 06:36:34 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-oss"
|
|
|
|
"--disable-video-x11-xme"
|
|
|
|
"--disable-x11-shared"
|
|
|
|
"--disable-alsa-shared"
|
|
|
|
"--enable-rpath"
|
|
|
|
"--disable-pulseaudio-shared"
|
|
|
|
"--disable-osmesa-shared"
|
2017-06-28 22:00:28 +02:00
|
|
|
] ++ optional (!x11Support) "--without-x"
|
|
|
|
++ optional (alsaSupport && hostPlatform != buildPlatform) "--with-alsa-prefix=${alsaLib.out}/lib";
|
2010-08-11 22:14:25 +02:00
|
|
|
|
2016-02-07 03:03:16 +01:00
|
|
|
patches = [
|
|
|
|
# Fix window resizing issues, e.g. for xmonad
|
|
|
|
# Ticket: http://bugzilla.libsdl.org/show_bug.cgi?id=1430
|
|
|
|
(fetchpatch {
|
|
|
|
name = "fix_window_resizing.diff";
|
|
|
|
url = "https://bugs.debian.org/cgi-bin/bugreport.cgi?msg=10;filename=fix_window_resizing.diff;att=2;bug=665779";
|
|
|
|
sha256 = "1z35azc73vvi19pzi6byck31132a8w1vzrghp1x3hy4a4f9z4gc6";
|
|
|
|
})
|
|
|
|
# Fix drops of keyboard events for SDL_EnableUNICODE
|
|
|
|
(fetchpatch {
|
|
|
|
url = "http://hg.libsdl.org/SDL/raw-rev/0aade9c0203f";
|
|
|
|
sha256 = "1y9izncjlqvk1mkz1pkl9lrk9s452cmg2izjjlqqrhbn8279xy50";
|
|
|
|
})
|
|
|
|
# Ignore insane joystick axis events
|
|
|
|
(fetchpatch {
|
|
|
|
url = "http://hg.libsdl.org/SDL/raw-rev/95abff7adcc2";
|
|
|
|
sha256 = "0i8x0kx0pw12ld5bfxhyzs466y3c0n9dscw1ijhq1b96r72xyhqq";
|
|
|
|
})
|
2018-03-06 16:24:07 +01:00
|
|
|
# https://bugzilla.libsdl.org/show_bug.cgi?id=1769
|
|
|
|
(fetchpatch {
|
|
|
|
url = "http://hg.libsdl.org/SDL/raw-rev/91ad7b43317a";
|
|
|
|
sha256 = "15g537vbl2my4mfrjxfkcx9ri6bk2gjvaqj650rjdxwk2nkdkn4b";
|
|
|
|
})
|
2016-02-07 03:03:16 +01:00
|
|
|
# Workaround X11 bug to allow changing gamma
|
|
|
|
# Ticket: https://bugs.freedesktop.org/show_bug.cgi?id=27222
|
|
|
|
(fetchpatch {
|
2017-02-11 05:26:17 +01:00
|
|
|
name = "SDL_SetGamma.patch";
|
2018-02-08 22:38:06 +01:00
|
|
|
url = "http://src.fedoraproject.org/cgit/rpms/SDL.git/plain/SDL-1.2.15-x11-Bypass-SetGammaRamp-when-changing-gamma.patch?id=04a3a7b1bd88c2d5502292fad27e0e02d084698d";
|
2016-02-07 03:03:16 +01:00
|
|
|
sha256 = "0x52s4328kilyq43i7psqkqg7chsfwh0aawr50j566nzd7j51dlv";
|
|
|
|
})
|
|
|
|
# Fix a build failure on OS X Mavericks
|
|
|
|
# Ticket: https://bugzilla.libsdl.org/show_bug.cgi?id=2085
|
|
|
|
(fetchpatch {
|
|
|
|
url = "http://hg.libsdl.org/SDL/raw-rev/e9466ead70e5";
|
|
|
|
sha256 = "0mpwdi09h89df2wxqw87m1rdz7pr46k0w6alk691k8kwv970z6pl";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = "http://hg.libsdl.org/SDL/raw-rev/bbfb41c13a87";
|
|
|
|
sha256 = "1336g7waaf1c8yhkz11xbs500h8bmvabh4h437ax8l1xdwcppfxv";
|
|
|
|
})
|
2016-08-22 05:24:00 +02:00
|
|
|
./find-headers.patch
|
2016-02-07 03:03:16 +01:00
|
|
|
];
|
2015-03-05 21:55:59 +01:00
|
|
|
|
2015-12-02 10:03:23 +01:00
|
|
|
postFixup = ''moveToOutput share/aclocal "$dev" '';
|
2015-10-11 16:21:43 +02:00
|
|
|
|
2016-08-22 05:24:00 +02:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2016-02-07 03:03:16 +01:00
|
|
|
passthru = { inherit openglSupport; };
|
2008-06-14 22:46:34 +02:00
|
|
|
|
2013-09-06 03:47:49 +02:00
|
|
|
meta = with stdenv.lib; {
|
2008-06-14 22:46:34 +02:00
|
|
|
description = "A cross-platform multimedia library";
|
2016-08-22 05:24:00 +02:00
|
|
|
homepage = "http://www.libsdl.org/";
|
2013-09-06 03:47:49 +02:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2015-03-05 21:55:59 +01:00
|
|
|
platforms = platforms.unix;
|
2016-02-07 03:03:16 +01:00
|
|
|
license = licenses.lgpl21;
|
2008-06-14 22:46:34 +02:00
|
|
|
};
|
2004-09-26 20:12:51 +02:00
|
|
|
}
|