mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 14:40:07 +03:00
28 lines
356 B
Nix
28 lines
356 B
Nix
|
{ mkDerivation
|
||
|
, lib
|
||
|
, automoc4
|
||
|
, cmake
|
||
|
, perl
|
||
|
, pkgconfig
|
||
|
, kdelibs
|
||
|
, ffmpeg
|
||
|
}:
|
||
|
|
||
|
mkDerivation {
|
||
|
name = "ffmpegthumbs";
|
||
|
nativeBuildInputs = [
|
||
|
automoc4
|
||
|
cmake
|
||
|
perl
|
||
|
pkgconfig
|
||
|
];
|
||
|
buildInputs = [
|
||
|
kdelibs
|
||
|
ffmpeg
|
||
|
];
|
||
|
meta = {
|
||
|
license = with lib.licenses; [ gpl2 bsd3 ];
|
||
|
maintainers = [ lib.maintainers.ttuegel ];
|
||
|
};
|
||
|
}
|