nixpkgs/pkgs/applications/kde/ffmpegthumbs.nix

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

16 lines
316 B
Nix
Raw Normal View History

{
mkDerivation, lib,
extra-cmake-modules,
ffmpeg_7, kio, taglib
}:
mkDerivation {
2020-12-25 02:05:07 +03:00
pname = "ffmpegthumbs";
meta = {
license = with lib.licenses; [ gpl2 bsd3 ];
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ ffmpeg_7 kio taglib ];
}