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 03:24:00 +00:00
|
|
|
, alsaSupport ? true, alsaLib
|
2017-06-28 20:00:28 +00:00
|
|
|
, x11Support ? hostPlatform == buildPlatform, libXext, libICE, libXrandr
|
2016-08-22 03:24:00 +00:00
|
|
|
, pulseaudioSupport ? true, libpulseaudio
|
2015-10-28 23:44:30 +00:00
|
|
|
, OpenGL, CoreAudio, CoreServices, AudioUnit, Kernel, Cocoa
|
2017-06-28 20:00:28 +00:00
|
|
|
, hostPlatform, buildPlatform
|
2006-09-11 23:06:26 +00: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 13:21:18 +00:00
|
|
|
|
2015-06-08 09:13:46 +00:00
|
|
|
let
|
2018-03-05 17:30:34 +00:00
|
|
|
|
|
|
|
configureFlagsFun = attrs: [
|
|
|
|
"--disable-oss"
|
|
|
|
"--disable-video-x11-xme"
|
|
|
|
"--enable-rpath"
|
2018-03-06 15:35:27 +00:00
|
|
|
# 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"
|
2018-03-05 17:30:34 +00:00
|
|
|
++ optional alsaSupport "--with-alsa-prefix=${attrs.alsaLib.out}/lib";
|
|
|
|
|
2015-06-08 09:13:46 +00:00
|
|
|
in
|
2018-03-05 17:30:34 +00:00
|
|
|
|
2009-10-21 13:21:22 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2013-09-06 01:47:49 +00:00
|
|
|
name = "SDL-${version}";
|
2016-08-22 03:24:00 +00:00
|
|
|
version = "1.2.15";
|
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
|
|
|
|
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 00:30:01 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-11 14:21:43 +00:00
|
|
|
outputBin = "dev"; # sdl-config
|
2015-07-26 22:25:53 +00:00
|
|
|
|
2015-06-08 09:13:46 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2018-03-05 17:30:34 +00:00
|
|
|
propagatedBuildInputs = [ ]
|
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 19:57:42 +00:00
|
|
|
|
2018-03-05 17:30:34 +00:00
|
|
|
buildInputs = [ libiconv ]
|
|
|
|
++ optional (!hostPlatform.isMinGW) audiofile
|
|
|
|
++ optionals stdenv.isDarwin [ AudioUnit CoreAudio CoreServices Kernel OpenGL ];
|
|
|
|
|
|
|
|
configureFlags = configureFlagsFun { inherit alsaLib; };
|
|
|
|
|
|
|
|
crossAttrs = {
|
|
|
|
configureFlags = configureFlagsFun { alsaLib = alsaLib.crossDrv; };
|
|
|
|
};
|
2010-08-11 20:14:25 +00: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 14:21:43 +00: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 03:24:00 +00:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2016-02-07 02:03:16 +00:00
|
|
|
passthru = { inherit openglSupport; };
|
2008-06-14 20:46:34 +00:00
|
|
|
|
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";
|
2016-08-22 03:24:00 +00:00
|
|
|
homepage = "http://www.libsdl.org/";
|
2013-09-06 01:47:49 +00: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 20:46:34 +00:00
|
|
|
};
|
2004-09-26 18:12:51 +00:00
|
|
|
}
|