Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
27 lines
630 B
Nix
27 lines
630 B
Nix
{ lib, buildDunePackage, dune-configurator, pkg-config, callPackage
|
|
, AudioToolbox
|
|
, ffmpeg-base ? callPackage ./base.nix { }
|
|
, ffmpeg-avutil, ffmpeg
|
|
, stdenv
|
|
, VideoToolbox
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "ffmpeg-avcodec";
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
inherit (ffmpeg-base) version src;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ dune-configurator ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ AudioToolbox VideoToolbox ];
|
|
propagatedBuildInputs = [ ffmpeg-avutil ffmpeg.dev ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = ffmpeg-base.meta // {
|
|
description = "Bindings for the ffmpeg avcodec library";
|
|
};
|
|
|
|
}
|