chromium: remove broken pulseSupport = false; override (#540868)

This commit is contained in:
Emily
2026-07-25 23:18:16 +00:00
committed by GitHub
2 changed files with 7 additions and 6 deletions
@@ -91,7 +91,6 @@
cupsSupport ? true,
cups ? null,
proprietaryCodecs ? true,
pulseSupport ? false,
libpulseaudio ? null,
ungoogled ? false,
ungoogled-chromium,
@@ -394,7 +393,9 @@ let
libgcrypt
cups
]
++ lib.optional pulseSupport libpulseaudio;
++ [
libpulseaudio
];
buildInputs = [
]
@@ -455,7 +456,9 @@ let
libgcrypt
cups
]
++ lib.optional pulseSupport libpulseaudio;
++ [
libpulseaudio
];
patches = [
./patches/cross-compile.patch
@@ -968,7 +971,7 @@ let
use_vaapi = false;
use_v4l2_codec = true;
}
// lib.optionalAttrs pulseSupport {
// {
use_pulseaudio = true;
link_pulseaudio = true;
}
@@ -32,7 +32,6 @@
enableWideVine ? false,
ungoogled ? false, # Whether to build chromium or ungoogled-chromium
cupsSupport ? true,
pulseSupport ? config.pulseaudio or stdenv.hostPlatform.isLinux,
commandLineArgs ? "",
pkgsBuildBuild,
pkgs,
@@ -76,7 +75,6 @@ let
inherit
proprietaryCodecs
cupsSupport
pulseSupport
ungoogled
;
gnChromium = buildPackages.gn.override upstream-info.deps.gn;