Unverified Commit 22f34034 authored by Emily's avatar Emily Committed by GitHub
Browse files

chromium,chromedriver: 142.0.7444.175 -> 143.0.7499.40 (#467236)

parents 3c7db53d f6f48f1e
Loading
Loading
Loading
Loading
+14 −1
Original line number Diff line number Diff line
@@ -157,7 +157,11 @@ let
    # "snappy"
    "flac"
    "libjpeg"
  ]
  ++ lib.optionals needsLibpng [
    "libpng"
  ]
  ++ [
    # Use the vendored libwebp for M124+ until we figure out how to solve:
    # Running phase: configurePhase
    # ERROR Unresolved dependencies.
@@ -217,6 +221,9 @@ let

  isElectron = packageName == "electron";
  rustcVersion = buildPackages.rustc.version;
  # libpng has been replaced by the png rust crate
  # https://github.com/image-rs/image-png/discussions/562
  needsLibpng = !chromiumVersionAtLeast "143";

  chromiumDeps = lib.mapAttrs (
    path: args:
@@ -321,8 +328,10 @@ let
    # maintain a separate list of buildPlatform-dependencies, we
    # simply throw in the kitchen sink.
    # ** Because of overrides, we have to copy the list as it otherwise mess with splicing **
    ++ [
    ++ lib.optionals needsLibpng [
      (buildPackages.libpng.override { apngSupport = false; }) # https://bugs.chromium.org/p/chromium/issues/detail?id=752403
    ]
    ++ [
      (buildPackages.libopus.override { withCustomModes = true; })
      bzip2
      flac
@@ -378,7 +387,11 @@ let
    ++ lib.optional pulseSupport libpulseaudio;

    buildInputs = [
    ]
    ++ lib.optionals needsLibpng [
      (libpng.override { apngSupport = false; }) # https://bugs.chromium.org/p/chromium/issues/detail?id=752403
    ]
    ++ [
      (libopus.override { withCustomModes = true; })
      bzip2
      flac
+140 −140

File changed.

Preview size limit exceeded, changes collapsed.