lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.05-pre 23 lines 531 B view raw
1{ lib, buildDunePackage, dune-configurator, pkg-config, fetchFromGitHub, callPackage 2, ffmpeg-base ? callPackage ./base.nix { } 3, ffmpeg-av, ffmpeg 4}: 5 6buildDunePackage { 7 pname = "ffmpeg-avdevice"; 8 9 minimalOCamlVersion = "4.08"; 10 11 inherit (ffmpeg-base) version src useDune2; 12 13 nativeBuildInputs = [ pkg-config ]; 14 buildInputs = [ dune-configurator ]; 15 propagatedBuildInputs = [ ffmpeg-av ffmpeg.dev ]; 16 17 doCheck = true; 18 19 meta = ffmpeg-base.meta // { 20 description = "Bindings for the ffmpeg avdevice library"; 21 }; 22 23}