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

kdeApp {
  name = "ffmpegthumbs";
  meta = {
    license = with lib.licenses; [ gpl2 bsd3 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [ ecm ];
  propagatedBuildInputs = [ ffmpeg kio ];
}