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