nixpkgs/pkgs/desktops/kde-5/applications-15.12/ffmpegthumbs.nix
2016-03-01 10:36:00 -06:00

22 lines
298 B
Nix

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