2017-05-28 19:52:30 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, audiofile, libcap, libiconv
|
2018-02-24 12:59:47 +00:00
|
|
|
, openglSupport ? false, libGL, libGLU
|
2016-08-22 04:24:00 +01:00
|
|
|
, alsaSupport ? true, alsaLib
|
2017-06-28 21:00:28 +01:00
|
|
|
, x11Support ? hostPlatform == buildPlatform, libXext, libICE, libXrandr
|
2016-08-22 04:24:00 +01:00
|
|
|
, pulseaudioSupport ? true, libpulseaudio
|
2015-10-28 23:44:30 +00:00
|
|
|
, OpenGL, CoreAudio, CoreServices, AudioUnit, Kernel, Cocoa
|
2017-06-28 21:00:28 +01:00
|
|
|
, hostPlatform, buildPlatform
|
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.
|
2017-06-28 21:00:28 +01:00
|
|
|
assert hostPlatform.isLinux -> alsaSupport || pulseaudioSupport;
|
2009-10-21 14:21:18 +01:00
|
|
|
|
2015-06-08 10:13:46 +01:00
|
|
|
let
|
|
|
|
inherit (stdenv.lib) optional optionals;
|
|
|
|
in
|
2009-10-21 14:21:22 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-09-06 02:47:49 +01:00
|
|
|
name = "SDL-${version}";
|
2016-08-22 04:24:00 +01:00
|
|
|
version = "1.2.15";
|
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
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-11 15:21:43 +01:00
|
|
|
outputBin = "dev"; # sdl-config
|
2015-07-26 23:25:53 +01:00
|
|
|
|
2015-06-08 10:13:46 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2009-05-11 22:11:25 +01:00
|
|
|
# Since `libpulse*.la' contain `-lgdbm', PulseAudio must be propagated.
|
2015-06-08 10:13:46 +01:00
|
|
|
propagatedBuildInputs =
|
2016-08-22 04:24:00 +01:00
|
|
|
optionals x11Support [ libXext libICE libXrandr ] ++
|
2015-06-08 10:13:46 +01:00
|
|
|
optional alsaSupport alsaLib ++
|
|
|
|
optional stdenv.isLinux libcap ++
|
2018-02-24 12:59:47 +00:00
|
|
|
optionals openglSupport [ libGL libGLU ] ++
|
2016-02-05 17:53:26 +00:00
|
|
|
optional pulseaudioSupport libpulseaudio ++
|
|
|
|
optional stdenv.isDarwin Cocoa;
|
2009-05-11 22:11:25 +01:00
|
|
|
|
2014-03-12 05:36:34 +00:00
|
|
|
buildInputs = let
|
2017-06-27 00:14:45 +01:00
|
|
|
notMingw = !hostPlatform.isMinGW;
|
2015-10-28 23:44:30 +00:00
|
|
|
in optional notMingw audiofile
|
2017-05-28 19:52:30 +01:00
|
|
|
++ optionals stdenv.isDarwin [ OpenGL CoreAudio CoreServices AudioUnit Kernel ]
|
|
|
|
++ [ libiconv ];
|
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"
|
2017-06-28 21:00:28 +01:00
|
|
|
] ++ optional (!x11Support) "--without-x"
|
|
|
|
++ optional (alsaSupport && hostPlatform != buildPlatform) "--with-alsa-prefix=${alsaLib.out}/lib";
|
2010-08-11 21:14:25 +01:00
|
|
|
|
2016-02-07 02:03:16 +00: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";
|
|
|
|
})
|
|
|
|
# Workaround X11 bug to allow changing gamma
|
|
|
|
# Ticket: https://bugs.freedesktop.org/show_bug.cgi?id=27222
|
|
|
|
(fetchpatch {
|
2017-02-11 04:26:17 +00:00
|
|
|
name = "SDL_SetGamma.patch";
|
2018-02-08 21:38:06 +00: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 02:03:16 +00: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 04:24:00 +01:00
|
|
|
./find-headers.patch
|
2016-02-07 02:03:16 +00:00
|
|
|
];
|
2015-03-05 20:55:59 +00:00
|
|
|
|
2015-12-02 09:03:23 +00:00
|
|
|
postFixup = ''moveToOutput share/aclocal "$dev" '';
|
2015-10-11 15:21:43 +01:00
|
|
|
|
2016-08-22 04:24:00 +01:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2016-02-07 02:03:16 +00:00
|
|
|
passthru = { inherit openglSupport; };
|
2008-06-14 21:46:34 +01:00
|
|
|
|
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";
|
2016-08-22 04:24:00 +01:00
|
|
|
homepage = "http://www.libsdl.org/";
|
2013-09-06 02:47:49 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2015-03-05 20:55:59 +00:00
|
|
|
platforms = platforms.unix;
|
2016-02-07 02:03:16 +00:00
|
|
|
license = licenses.lgpl21;
|
2008-06-14 21:46:34 +01:00
|
|
|
};
|
2004-09-26 19:12:51 +01:00
|
|
|
}
|