depot/pkgs/applications/kde/ffmpegthumbs.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
312 B
Nix
Raw Normal View History

{
mkDerivation, lib,
extra-cmake-modules,
ffmpeg, kio, taglib
}:
mkDerivation {
pname = "ffmpegthumbs";
meta = {
license = with lib.licenses; [ gpl2 bsd3 ];
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ ffmpeg kio taglib ];
}