lol
0
fork

Configure Feed

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

Merge pull request #306849 from r-ryantm/auto-update/libaom

libaom: 3.8.2 -> 3.9.0

authored by

Robert Scott and committed by
GitHub
5bb3687c 52dc84bc

+11 -2
+11 -2
pkgs/development/libraries/libaom/default.nix
··· 1 1 { lib, stdenv, fetchzip, yasm, perl, cmake, pkg-config, python3 2 2 , enableVmaf ? true, libvmaf 3 3 , gitUpdater 4 + 5 + # for passthru.tests 6 + , ffmpeg 7 + , libavif 8 + , libheif 4 9 }: 5 10 6 11 let ··· 8 13 in 9 14 stdenv.mkDerivation rec { 10 15 pname = "libaom"; 11 - version = "3.8.2"; 16 + version = "3.9.0"; 12 17 13 18 src = fetchzip { 14 19 url = "https://aomedia.googlesource.com/aom/+archive/v${version}.tar.gz"; 15 - hash = "sha256-x152jIe7QxeprFEFJnXBfou8yHuW0oHImLIVkSxByWw="; 20 + hash = "sha256-ON/BWCO2k7fADW3ZANKjnRE8SrQZpjdyUF1N0fD/xnc="; 16 21 stripRoot = false; 17 22 }; 18 23 ··· 66 71 url = "https://aomedia.googlesource.com/aom"; 67 72 rev-prefix = "v"; 68 73 ignoredVersions = "(alpha|beta|rc).*"; 74 + }; 75 + tests = { 76 + inherit libavif libheif; 77 + ffmpeg = ffmpeg.override { withAom = true; }; 69 78 }; 70 79 }; 71 80