mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
33 lines
524 B
Nix
33 lines
524 B
Nix
{
|
|
buildDunePackage,
|
|
dune-configurator,
|
|
pkg-config,
|
|
callPackage,
|
|
ffmpeg-base ? callPackage ./base.nix { },
|
|
ffmpeg-av,
|
|
ffmpeg,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "ffmpeg-avdevice";
|
|
|
|
minimalOCamlVersion = "4.12";
|
|
|
|
inherit (ffmpeg-base) version src;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ dune-configurator ];
|
|
|
|
propagatedBuildInputs = [
|
|
ffmpeg-av
|
|
ffmpeg.dev
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = ffmpeg-base.meta // {
|
|
description = "Bindings for the ffmpeg avdevice library";
|
|
};
|
|
|
|
}
|