2018-03-05 17:30:34 +00:00
|
|
|
{ stdenv, lib, 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
|
2018-08-20 19:43:41 +01:00
|
|
|
, x11Support ? stdenv.hostPlatform == stdenv.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
|
2006-09-12 00:06:26 +01:00
|
|
|
}:
|
2006-01-26 14:01:08 +00:00
|
|
|
|
2018-03-05 17:30:34 +00:00
|
|
|
# NOTE: When editing this expression see if the same change applies to
|
|
|
|
# SDL2 expression too
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
assert !stdenv.isDarwin -> alsaSupport || pulseaudioSupport;
|
|
|
|
assert openglSupport -> (stdenv.isDarwin || x11Support && libGL != null && libGLU != null);
|
2009-10-21 14:21:18 +01:00
|
|
|
|
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 {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://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
|
|
|
|
2018-03-18 09:17:57 +00:00
|
|
|
# make: *** No rule to make target 'build/*.lo', needed by 'build/libSDL.la'. Stop.
|
|
|
|
postPatch = "patchShebangs ./configure";
|
|
|
|
|
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 ];
|
|
|
|
|
2018-06-03 20:43:24 +01:00
|
|
|
propagatedBuildInputs = [ libiconv ]
|
2018-03-08 11:21:04 +00:00
|
|
|
++ optionals x11Support [ libXext libICE libXrandr ]
|
2018-03-05 17:30:34 +00:00
|
|
|
++ optional stdenv.isLinux libcap
|
|
|
|
++ optionals openglSupport [ libGL libGLU ]
|
|
|
|
++ optional alsaSupport alsaLib
|
|
|
|
++ optional pulseaudioSupport libpulseaudio
|
|
|
|
++ optional stdenv.isDarwin Cocoa;
|
2009-05-11 20:57:42 +01:00
|
|
|
|
2018-06-03 20:43:24 +01:00
|
|
|
buildInputs = [ ]
|
2018-08-20 19:43:41 +01:00
|
|
|
++ optional (!stdenv.hostPlatform.isMinGW) audiofile
|
2018-03-05 17:30:34 +00:00
|
|
|
++ optionals stdenv.isDarwin [ AudioUnit CoreAudio CoreServices Kernel OpenGL ];
|
|
|
|
|
2018-05-10 17:31:03 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-oss"
|
|
|
|
"--disable-video-x11-xme"
|
|
|
|
"--enable-rpath"
|
|
|
|
# Building without this fails on Darwin with
|
|
|
|
#
|
|
|
|
# ./src/video/x11/SDL_x11sym.h:168:17: error: conflicting types for '_XData32'
|
|
|
|
# SDL_X11_SYM(int,_XData32,(Display *dpy,register long *data,unsigned len),(dpy,data,len),return)
|
|
|
|
#
|
|
|
|
# Please try revert the change that introduced this comment when updating SDL.
|
|
|
|
] ++ optional stdenv.isDarwin "--disable-x11-shared"
|
|
|
|
++ optional (!x11Support) "--without-x"
|
|
|
|
++ optional alsaSupport "--with-alsa-prefix=${alsaLib.out}/lib";
|
2010-08-11 21:14:25 +01:00
|
|
|
|
2016-02-07 02:03:16 +00:00
|
|
|
patches = [
|
2018-03-05 17:30:34 +00:00
|
|
|
./find-headers.patch
|
|
|
|
|
2016-02-07 02:03:16 +00:00
|
|
|
# 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 15:24:07 +00: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 02:03:16 +00:00
|
|
|
# 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";
|
|
|
|
})
|
|
|
|
];
|
2015-03-05 20:55:59 +00:00
|
|
|
|
2018-03-05 17:30:34 +00:00
|
|
|
postInstall = ''
|
|
|
|
moveToOutput share/aclocal "$dev"
|
|
|
|
'';
|
2015-10-11 15:21:43 +01:00
|
|
|
|
2018-03-05 20:12:44 +00:00
|
|
|
# See the same place in the expression for SDL2
|
|
|
|
postFixup = ''
|
|
|
|
for lib in $out/lib/*.so* ; do
|
|
|
|
if [[ -L "$lib" ]]; then
|
|
|
|
patchelf --set-rpath "$(patchelf --print-rpath $lib):${lib.makeLibraryPath propagatedBuildInputs}" "$lib"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
|
2018-06-03 20:43:24 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
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
|
|
|
}
|