summary refs log tree commit diff
path: root/pkgs/applications/kde/ffmpegthumbs.nix
blob: b8695a3015473ba8a0281e1122e12c3a7252a594 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  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 ];
}