libsForQt5.qtwebengine: always use system ffmpeg
This commit is contained in:
parent
6de7e0d758
commit
6ba83717fe
|
@ -140,9 +140,8 @@ qtModule {
|
|||
fi
|
||||
'';
|
||||
|
||||
qmakeFlags = if stdenv.hostPlatform.isAarch32 || stdenv.hostPlatform.isAarch64
|
||||
then [ "--" "-system-ffmpeg" ] ++ optional enableProprietaryCodecs "-proprietary-codecs"
|
||||
else optional enableProprietaryCodecs "-- -proprietary-codecs";
|
||||
qmakeFlags = [ "--" "-system-ffmpeg" ]
|
||||
++ optional enableProprietaryCodecs "-proprietary-codecs";
|
||||
|
||||
propagatedBuildInputs = [
|
||||
# Image formats
|
||||
|
@ -158,7 +157,6 @@ qtModule {
|
|||
harfbuzz icu
|
||||
|
||||
libevent
|
||||
] ++ optionals (stdenv.hostPlatform.isAarch32 || stdenv.hostPlatform.isAarch64) [
|
||||
ffmpeg
|
||||
] ++ optionals (!stdenv.isDarwin) [
|
||||
dbus zlib minizip snappy nss protobuf jsoncpp
|
||||
|
|
Loading…
Reference in New Issue