mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
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:
parent
bd1c971af1
commit
3bc69d42d5
1 changed files with 0 additions and 6 deletions
|
@ -32,8 +32,6 @@
|
||||||
python3,
|
python3,
|
||||||
swig,
|
swig,
|
||||||
qt ? null,
|
qt ? null,
|
||||||
enableSDL1 ? stdenv.hostPlatform.isLinux,
|
|
||||||
SDL,
|
|
||||||
enableSDL2 ? true,
|
enableSDL2 ? true,
|
||||||
SDL2,
|
SDL2,
|
||||||
gitUpdater,
|
gitUpdater,
|
||||||
|
@ -104,10 +102,6 @@ stdenv.mkDerivation rec {
|
||||||
(qt.qt5compat or null)
|
(qt.qt5compat or null)
|
||||||
libarchive
|
libarchive
|
||||||
]
|
]
|
||||||
++ lib.optionals enableSDL1 [
|
|
||||||
SDL
|
|
||||||
libX11
|
|
||||||
]
|
|
||||||
++ lib.optionals enableSDL2 [
|
++ lib.optionals enableSDL2 [
|
||||||
SDL2
|
SDL2
|
||||||
libX11
|
libX11
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue