depot/third_party/nixpkgs/pkgs/applications/kde/ffmpegthumbs.nix

25 lines
349 B
Nix

{
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
];
}