Commit 54758179 authored by OPNA2608's avatar OPNA2608
Browse files

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.
parent 3f563e3b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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[@]}"
    )
  '';