summary refs log tree commit diff
path: root/pkgs/applications/kde/ffmpegthumbs.nix
blob: aa03425f36a0ab1d3db87863c1fcab7ca74f0ad4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  mkDerivation, lib,
  extra-cmake-modules,
  ffmpeg, kio
}:

mkDerivation {
  name = "ffmpegthumbs";
  meta = {
    license = with lib.licenses; [ gpl2 bsd3 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ ffmpeg kio ];
}