lol

Merge pull request #235259 from risicle/ris-dav1d-passthru-tests

dav1d: add some key reverse dependencies to `passthru.tests`

authored by

Robert Scott and committed by
GitHub
e32a6abb a6fd0342

+16
+16
pkgs/development/libraries/dav1d/default.nix
··· 4 4 , withTools ? false # "dav1d" binary 5 5 , withExamples ? false, SDL2 # "dav1dplay" binary 6 6 , useVulkan ? false, libplacebo, vulkan-loader, vulkan-headers 7 + 8 + # for passthru.tests 9 + , ffmpeg 10 + , gdal 11 + , handbrake 12 + , libavif 13 + , libheif 7 14 }: 8 15 9 16 assert useVulkan -> withExamples; ··· 33 40 ]; 34 41 35 42 doCheck = true; 43 + 44 + passthru.tests = { 45 + inherit 46 + ffmpeg 47 + gdal 48 + handbrake 49 + libavif 50 + libheif; 51 + }; 36 52 37 53 meta = with lib; { 38 54 description = "A cross-platform AV1 decoder focused on speed and correctness";