Skip to content

Commit

Permalink
qctools: revert ffmpeg version to 6
Browse files Browse the repository at this point in the history
Regression caused by NixOS#337855
  • Loading branch information
FliegendeWurst committed Oct 30, 2024
1 parent 990f185 commit b16ae23
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkgs/applications/video/qctools/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, qmake, wrapQtAppsHook, ffmpeg, qtmultimedia, qwt }:
{ lib, stdenv, fetchurl, qmake, wrapQtAppsHook, ffmpeg_6, qtmultimedia, qwt }:

stdenv.mkDerivation rec {
pname = "qctools";
Expand All @@ -13,7 +13,7 @@ stdenv.mkDerivation rec {

nativeBuildInputs = [ qmake wrapQtAppsHook ];

buildInputs = [ ffmpeg qtmultimedia qwt ];
buildInputs = [ ffmpeg_6 qtmultimedia qwt ];

installPhase = ''
runHook preInstall
Expand All @@ -30,11 +30,11 @@ stdenv.mkDerivation rec {
runHook postInstall
'';

meta = with lib; {
meta = {
description = "Audiovisual analytics and filtering of video files";
homepage = "https://mediaarea.net/QCTools";
license = licenses.gpl3Only;
maintainers = with maintainers; [ orivej ];
platforms = platforms.linux;
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ orivej ];
platforms = lib.platforms.linux;
};
}

0 comments on commit b16ae23

Please sign in to comment.