mlt: Remove SDL1 support

mlt supports both sdl1 and sdl2, with sdl1 not being critical:
It was never enabled on darwin, even though it was technically availabe.
SDL1 is deprecated upstream, and has been replaced in nixpkgs with `SDL_compat`,
which is just a shim running through SDL2 later. If SDL2 is supported,
adding SDL1 is pointless.
This commit is contained in:
Grimmauld 2025-06-07 09:12:12 +02:00
parent bd1c971af1
commit 3bc69d42d5
No known key found for this signature in database

View file

@ -32,8 +32,6 @@
python3,
swig,
qt ? null,
enableSDL1 ? stdenv.hostPlatform.isLinux,
SDL,
enableSDL2 ? true,
SDL2,
gitUpdater,
@ -104,10 +102,6 @@ stdenv.mkDerivation rec {
(qt.qt5compat or null)
libarchive
]
++ lib.optionals enableSDL1 [
SDL
libX11
]
++ lib.optionals enableSDL2 [
SDL2
libX11