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

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