mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
d62b72d4ee
Builds fine with FFmpeg 7, and Arch ships it like that.
15 lines
316 B
Nix
15 lines
316 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
ffmpeg_7, kio, taglib
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "ffmpegthumbs";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 bsd3 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ ffmpeg_7 kio taglib ];
|
|
}
|