freerdp: update default from SDL2 to SDL3

SDL2 version has been deprecated https://github.com/FreeRDP/FreeRDP/pull/11223
This commit is contained in:
DeimElias
2025-12-19 02:03:15 +01:00
committed by Sandro Jäckel
parent 2f2d1c2033
commit 413b9b11c2
+12 -3
View File
@@ -46,6 +46,9 @@
SDL2,
SDL2_ttf,
SDL2_image,
sdl3,
sdl3-ttf,
sdl3-image,
systemd,
libjpeg_turbo,
libkrb5,
@@ -53,6 +56,7 @@
buildServer ? true,
nocaps ? false,
withUnfree ? false,
withSDL2 ? false,
# tries to compile and run generate_argument_docbook.c
withManPages ? stdenv.buildPlatform.canExecute stdenv.hostPlatform,
@@ -134,9 +138,9 @@ stdenv.mkDerivation (finalAttrs: {
pcre2
pcsclite
pkcs11helper
SDL2
SDL2_ttf
SDL2_image
sdl3
sdl3-ttf
sdl3-image
uriparser
zlib
]
@@ -147,6 +151,11 @@ stdenv.mkDerivation (finalAttrs: {
wayland
wayland-scanner
]
++ lib.optionals withSDL2 [
SDL2
SDL2_ttf
SDL2_image
]
++ lib.optionals withUnfree [
faac
];