Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildDunePackage, 3 dune-configurator, 4 pkg-config, 5 callPackage, 6 ffmpeg-base ? callPackage ./base.nix { }, 7 ffmpeg-av, 8 ffmpeg, 9}: 10 11buildDunePackage { 12 pname = "ffmpeg-avdevice"; 13 14 minimalOCamlVersion = "4.08"; 15 16 inherit (ffmpeg-base) version src; 17 18 nativeBuildInputs = [ pkg-config ]; 19 buildInputs = [ dune-configurator ]; 20 21 propagatedBuildInputs = [ 22 ffmpeg-av 23 ffmpeg.dev 24 ]; 25 26 doCheck = true; 27 28 meta = ffmpeg-base.meta // { 29 description = "Bindings for the ffmpeg avdevice library"; 30 }; 31 32}