Skip to content

Commit

Permalink
ffmpegthumbnailer: use ffmpeg instead of ffmpeg_3
Browse files Browse the repository at this point in the history
  • Loading branch information
dotlambda committed Apr 25, 2021
1 parent 632292a commit 9eecf56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/ffmpegthumbnailer/default.nix
@@ -1,4 +1,4 @@
{ fetchFromGitHub, lib, stdenv, ffmpeg_3, cmake, libpng, pkg-config, libjpeg
{ fetchFromGitHub, lib, stdenv, ffmpeg, cmake, libpng, pkg-config, libjpeg
}:

stdenv.mkDerivation rec {
Expand All @@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
};

nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ ffmpeg_3 libpng libjpeg ];
buildInputs = [ ffmpeg libpng libjpeg ];
cmakeFlags = [ "-DENABLE_THUMBNAILER=ON" ];

meta = with lib; {
Expand Down

0 comments on commit 9eecf56

Please sign in to comment.