goldendict-ng: disable FFmpeg backend

There is an upstream fix for FFmpeg 7 support, but according to
<https://github.com/xiaoyifang/goldendict-ng/issues/1523>:

> We don't actually need the FFmpeg backend anymore. Newer Qt6's
> multimedia has FFmpeg backend, the supported formats are the same.
>
> Maybe this is the time to delete the FFmpeg backend 😅
This commit is contained in:
Emily
2024-07-29 11:07:22 +01:00
parent 2166381c28
commit 6d00f45e36
@@ -4,7 +4,6 @@
, pkg-config
, cmake
, libvorbis
, ffmpeg
, libeb
, hunspell
, opencc
@@ -61,7 +60,6 @@ stdenv.mkDerivation (finalAttrs: {
libiconv
opencc
libeb
ffmpeg
xapian
libzim
];
@@ -76,7 +74,7 @@ stdenv.mkDerivation (finalAttrs: {
cmakeFlags = [
"-DWITH_XAPIAN=ON"
"-DWITH_ZIM=ON"
"-DWITH_FFMPEG_PLAYER=ON"
"-DWITH_FFMPEG_PLAYER=OFF"
"-DWITH_EPWING_SUPPORT=ON"
"-DUSE_SYSTEM_FMT=ON"
"-DUSE_SYSTEM_TOML=ON"