libvpx: add some key reverse-dependencies to passthru.tests

This commit is contained in:
Robert Scott 2024-06-02 19:13:08 +01:00
parent 0f007929ef
commit 75ecc0a1ec

View File

@ -36,6 +36,10 @@
, experimentalSpatialSvcSupport ? false # Spatial scalable video coding
, experimentalFpMbStatsSupport ? false
, experimentalEmulateHardwareSupport ? false
# for passthru.tests
, ffmpeg
, gst_all_1
}:
let
@ -184,6 +188,11 @@ stdenv.mkDerivation rec {
postInstall = ''moveToOutput bin "$bin" '';
passthru.tests = {
inherit (gst_all_1) gst-plugins-good;
ffmpeg = ffmpeg.override { withVpx = true; };
};
meta = with lib; {
description = "WebM VP8/VP9 codec SDK";
homepage = "https://www.webmproject.org/";