Skip to content

Commit

Permalink
corrscope: Switch to regular ffmpeg
Browse files Browse the repository at this point in the history
ffplay is now enabled in the regular one. If a full ffmpeg is desired, then it can just be overridden.
  • Loading branch information
OPNA2608 committed Apr 11, 2024
1 parent 3f563e3 commit 5475817
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/by-name/co/corrscope/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
, lib
, python3Packages
, fetchFromGitHub
, ffmpeg-full
, ffmpeg
, libsForQt5
, testers
, corrscope
Expand Down Expand Up @@ -30,7 +30,7 @@ python3Packages.buildPythonApplication rec {
]);

buildInputs = [
ffmpeg-full
ffmpeg
] ++ (with libsForQt5; [
qtbase
] ++ lib.optionals stdenv.hostPlatform.isLinux [
Expand All @@ -56,7 +56,7 @@ python3Packages.buildPythonApplication rec {

preFixup = ''
makeWrapperArgs+=(
--prefix PATH : ${lib.makeBinPath [ ffmpeg-full ]}
--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}
"''${qtWrapperArgs[@]}"
)
'';
Expand Down

0 comments on commit 5475817

Please sign in to comment.