corrscope: Switch to regular ffmpeg

ffplay is now enabled in the regular one. If a full ffmpeg is desired, then it can just be overridden.
This commit is contained in:
OPNA2608 2024-04-11 23:43:15 +02:00
parent 3f563e3b75
commit 5475817996

View File

@ -2,7 +2,7 @@
, lib
, python3Packages
, fetchFromGitHub
, ffmpeg-full
, ffmpeg
, libsForQt5
, testers
, corrscope
@ -30,7 +30,7 @@ python3Packages.buildPythonApplication rec {
]);
buildInputs = [
ffmpeg-full
ffmpeg
] ++ (with libsForQt5; [
qtbase
] ++ lib.optionals stdenv.hostPlatform.isLinux [
@ -56,7 +56,7 @@ python3Packages.buildPythonApplication rec {
preFixup = ''
makeWrapperArgs+=(
--prefix PATH : ${lib.makeBinPath [ ffmpeg-full ]}
--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}
"''${qtWrapperArgs[@]}"
)
'';