ffmpegthumbs: add taglib input

This commit is contained in:
Thomas Tuegel 2021-01-31 10:19:23 -06:00
parent e2e0b52dae
commit ff7b81e870
No known key found for this signature in database
GPG Key ID: 22CBF5249D4B4D59

View File

@ -1,7 +1,7 @@
{ {
mkDerivation, lib, mkDerivation, lib,
extra-cmake-modules, extra-cmake-modules,
ffmpeg_3, kio ffmpeg_3, kio, taglib
}: }:
mkDerivation { mkDerivation {
@ -11,5 +11,5 @@ mkDerivation {
maintainers = [ lib.maintainers.ttuegel ]; maintainers = [ lib.maintainers.ttuegel ];
}; };
nativeBuildInputs = [ extra-cmake-modules ]; nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ ffmpeg_3 kio ]; buildInputs = [ ffmpeg_3 kio taglib ];
} }