1{ lib, stdenv, config, fetchurl, fetchpatch, pkg-config, audiofile, libcap, libiconv
2, libGLSupported ? lib.meta.availableOn stdenv.hostPlatform libGL
3, openglSupport ? libGLSupported, libGL, libGLU
4, alsaSupport ? stdenv.isLinux && !stdenv.hostPlatform.isAndroid, alsa-lib
5, x11Support ? !stdenv.isCygwin && !stdenv.hostPlatform.isAndroid
6, libXext, libICE, libXrandr
7, pulseaudioSupport ? config.pulseaudio or stdenv.isLinux && !stdenv.hostPlatform.isAndroid && lib.meta.availableOn stdenv.hostPlatform libpulseaudio, libpulseaudio
8, OpenGL, GLUT, CoreAudio, CoreServices, AudioUnit, Kernel, Cocoa
9}:
10
11# NOTE: When editing this expression see if the same change applies to
12# SDL2 expression too
13
14let
15 extraPropagatedBuildInputs = [ ]
16 ++ lib.optionals x11Support [ libXext libICE libXrandr ]
17 ++ lib.optionals (openglSupport && stdenv.isLinux) [ libGL libGLU ]
18 ++ lib.optionals (openglSupport && stdenv.isDarwin) [ OpenGL GLUT ]
19 ++ lib.optional alsaSupport alsa-lib
20 ++ lib.optional pulseaudioSupport libpulseaudio
21 ++ lib.optional stdenv.isDarwin Cocoa;
22 rpath = lib.makeLibraryPath extraPropagatedBuildInputs;
23in
24
25stdenv.mkDerivation rec {
26 pname = "SDL";
27 version = "1.2.15";
28
29 src = fetchurl {
30 url = "https://www.libsdl.org/release/${pname}-${version}.tar.gz";
31 sha256 = "005d993xcac8236fpvd1iawkz4wqjybkpn8dbwaliqz5jfkidlyn";
32 };
33
34 outputs = [ "out" "dev" ];
35 outputBin = "dev"; # sdl-config
36
37 nativeBuildInputs = [ pkg-config ]
38 ++ lib.optional stdenv.isLinux libcap;
39
40 propagatedBuildInputs = [ libiconv ] ++ extraPropagatedBuildInputs;
41
42 buildInputs = [ ]
43 ++ lib.optional (!stdenv.hostPlatform.isMinGW && alsaSupport) audiofile
44 ++ lib.optionals stdenv.isDarwin [ AudioUnit CoreAudio CoreServices Kernel OpenGL ];
45
46 configureFlags = [
47 "--disable-oss"
48 "--disable-video-x11-xme"
49 "--enable-rpath"
50 # Building without this fails on Darwin with
51 #
52 # ./src/video/x11/SDL_x11sym.h:168:17: error: conflicting types for '_XData32'
53 # SDL_X11_SYM(int,_XData32,(Display *dpy,register long *data,unsigned len),(dpy,data,len),return)
54 #
55 # Please try revert the change that introduced this comment when updating SDL.
56 ] ++ lib.optional stdenv.isDarwin "--disable-x11-shared"
57 ++ lib.optional (!x11Support) "--without-x"
58 ++ lib.optional alsaSupport "--with-alsa-prefix=${alsa-lib.out}/lib";
59
60 patches = [
61 ./find-headers.patch
62
63 # Fix window resizing issues, e.g. for xmonad
64 # Ticket: http://bugzilla.libsdl.org/show_bug.cgi?id=1430
65 (fetchpatch {
66 name = "fix_window_resizing.diff";
67 url = "https://bugs.debian.org/cgi-bin/bugreport.cgi?msg=10;filename=fix_window_resizing.diff;att=2;bug=665779";
68 sha256 = "1z35azc73vvi19pzi6byck31132a8w1vzrghp1x3hy4a4f9z4gc6";
69 })
70 # Fix drops of keyboard events for SDL_EnableUNICODE
71 (fetchpatch {
72 url = "https://github.com/libsdl-org/SDL-1.2/commit/0332e2bb18dc68d6892c3b653b2547afe323854b.patch";
73 sha256 = "0g458iv6pp9sikdch6ms8svz60lf5ks2q5wgid8s9rydhk98lpp5";
74 })
75 # Ignore insane joystick axis events
76 (fetchpatch {
77 url = "https://github.com/libsdl-org/SDL-1.2/commit/ab99cc82b0a898ad528d46fa128b649a220a94f4.patch";
78 sha256 = "1b3473sawfdbkkxaqf1hg0vn37yk8hf655jhnjwdk296z4gclazh";
79 })
80 # https://bugzilla.libsdl.org/show_bug.cgi?id=1769
81 (fetchpatch {
82 url = "https://github.com/libsdl-org/SDL-1.2/commit/5d79977ec7a6b58afa6e4817035aaaba186f7e9f.patch";
83 sha256 = "1k7y57b1zy5afib1g7w3in36n8cswbcrzdbrjpn5cb105rnb9vmp";
84 })
85 # Workaround X11 bug to allow changing gamma
86 # Ticket: https://bugs.freedesktop.org/show_bug.cgi?id=27222
87 (fetchpatch {
88 name = "SDL_SetGamma.patch";
89 url = "https://src.fedoraproject.org/rpms/SDL/raw/7a07323e5cec08bea6f390526f86a1ce5341596d/f/SDL-1.2.15-x11-Bypass-SetGammaRamp-when-changing-gamma.patch";
90 sha256 = "0x52s4328kilyq43i7psqkqg7chsfwh0aawr50j566nzd7j51dlv";
91 })
92 # Fix a build failure on OS X Mavericks
93 # Ticket: https://bugzilla.libsdl.org/show_bug.cgi?id=2085
94 (fetchpatch {
95 url = "https://github.com/libsdl-org/SDL-1.2/commit/19039324be71738d8990e91b9ba341b2ea068445.patch";
96 sha256 = "0ckwling2ad27c9vxgp97ndjd098d6zbrydza8b9l77k8airj98c";
97 })
98 (fetchpatch {
99 url = "https://github.com/libsdl-org/SDL-1.2/commit/7933032ad4d57c24f2230db29f67eb7d21bb5654.patch";
100 sha256 = "1by16firaxyr0hjvn35whsgcmq6bl0nwhnpjf75grjzsw9qvwyia";
101 })
102 (fetchpatch {
103 name = "CVE-2022-34568.patch";
104 url = "https://github.com/libsdl-org/SDL-1.2/commit/d7e00208738a0bc6af302723fe64908ac35b777b.patch";
105 sha256 = "sha256-fuxXsqZW94/C8CKu9LakppCU4zHupj66O2MngQ4BO9o=";
106 })
107 ];
108
109 postInstall = ''
110 moveToOutput share/aclocal "$dev"
111 '';
112
113 # See the same place in the expression for SDL2
114 postFixup = ''
115 for lib in $out/lib/*.so* ; do
116 if [[ -L "$lib" ]]; then
117 patchelf --set-rpath "$(patchelf --print-rpath $lib):${rpath}" "$lib"
118 fi
119 done
120 '';
121
122 setupHook = ./setup-hook.sh;
123
124 passthru = { inherit openglSupport; };
125
126 enableParallelBuilding = true;
127
128 meta = with lib; {
129 description = "Cross-platform multimedia library";
130 mainProgram = "sdl-config";
131 homepage = "http://www.libsdl.org/";
132 maintainers = with maintainers; [ lovek323 ];
133 platforms = platforms.unix;
134 license = licenses.lgpl21;
135 };
136}