Merge pull request #177374 from dali99/libaom-pbi

Fix staging build for `gst_all_1.gst-plugins-bad`

authored by Sergei Trofimovich and committed by GitHub 6614d564 620cb7cc

+8 -7
+3 -5
pkgs/development/libraries/libaom/default.nix
··· 1 { lib, stdenv, fetchzip, yasm, perl, cmake, pkg-config, python3 2 - , enableButteraugli ? false, libjxl, libhwy # Broken 3 , enableVmaf ? true, libvmaf 4 }: 5 ··· 19 yasm perl cmake pkg-config python3 20 ]; 21 22 - buildInputs = lib.optionals enableButteraugli [ 23 - libjxl 24 - libhwy 25 - ] ++ lib.optional enableVmaf libvmaf; 26 27 preConfigure = '' 28 # build uses `git describe` to set the build version
··· 1 { lib, stdenv, fetchzip, yasm, perl, cmake, pkg-config, python3 2 + , enableButteraugli ? false, libjxl # Broken 3 , enableVmaf ? true, libvmaf 4 }: 5 ··· 19 yasm perl cmake pkg-config python3 20 ]; 21 22 + propagatedBuildInputs = lib.optional enableButteraugli libjxl 23 + ++ lib.optional enableVmaf libvmaf; 24 25 preConfigure = '' 26 # build uses `git describe` to set the build version
+5 -2
pkgs/development/libraries/libjxl/default.nix
··· 78 # conclusively in its README or otherwise; they can best be determined 79 # by checking the CMake output for "Could NOT find". 80 buildInputs = [ 81 - brotli 82 giflib 83 gperftools # provides `libtcmalloc` 84 - libhwy 85 libjpeg 86 libpng 87 libwebp 88 openexr 89 zlib 90 ]; 91 92 cmakeFlags = [
··· 78 # conclusively in its README or otherwise; they can best be determined 79 # by checking the CMake output for "Could NOT find". 80 buildInputs = [ 81 giflib 82 gperftools # provides `libtcmalloc` 83 libjpeg 84 libpng 85 libwebp 86 openexr 87 zlib 88 + ]; 89 + 90 + propagatedBuildInputs = [ 91 + brotli 92 + libhwy 93 ]; 94 95 cmakeFlags = [