Merge pull request #316151 from r-ryantm/auto-update/libvpx

libvpx: 1.14.0 -> 1.14.1
This commit is contained in:
Thomas Gerbet 2024-06-04 21:47:12 +02:00 committed by GitHub
commit de0156b539
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,6 +36,10 @@
, experimentalSpatialSvcSupport ? false # Spatial scalable video coding
, experimentalFpMbStatsSupport ? false
, experimentalEmulateHardwareSupport ? false
# for passthru.tests
, ffmpeg
, gst_all_1
}:
let
@ -75,13 +79,13 @@ assert isCygwin -> unitTestsSupport && webmIOSupport && libyuvSupport;
stdenv.mkDerivation rec {
pname = "libvpx";
version = "1.14.0";
version = "1.14.1";
src = fetchFromGitHub {
owner = "webmproject";
repo = pname;
rev = "v${version}";
hash = "sha256-duU1exUg7JiKCtZfNxyb/y40hxsXeTIMShf9YounTWA=";
hash = "sha256-Pfg7g4y/dqn2VKDQU1LnTJQSj1Tont9/8Je6ShDb2GQ=";
};
postPatch = ''
@ -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/";