depot/third_party/nixpkgs/pkgs/applications/kde/ffmpegthumbs.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

15 lines
316 B
Nix

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