depot/third_party/nixpkgs/pkgs/applications/kde/ffmpegthumbs.nix
Default email 48af15f7a5 Project import generated by Copybara.
GitOrigin-RevId: 04a2b269d8921505a2969fc9ec25c1f517f2b307
2021-03-20 04:20:00 +00:00

15 lines
316 B
Nix

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