mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
chromium: Add missing dependency on libcap.
After the pulseaudio refactor in NixOS/nixpkgs@a2a3508, libcap is no longer propagated to chromium anymore. And we need to have libcap for the renderer sandbox. Build log: https://hydra.nixos.org/build/21689759/nixlog/1/raw What makes me wonder is that given that this was propagated by pulseaudio noone either seemed to have disabled pulseaudio support for Chromium or just didn't report the build failure. Half-assed testing done against all channels, because it builds the sandbox and we can't break an already broken build twice (or maybe we can, who knows...). Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
3768a7aea9
commit
fce7113345
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
# default dependencies
|
||||
, bzip2, flac, speex, icu, libopus
|
||||
, libevent, expat, libjpeg, snappy
|
||||
, libpng, libxml2, libxslt
|
||||
, libpng, libxml2, libxslt, libcap
|
||||
, xdg_utils, yasm, minizip, libwebp
|
||||
, libusb1, libexif, pciutils
|
||||
|
||||
|
@ -86,7 +86,7 @@ let
|
|||
defaultDependencies = [
|
||||
bzip2 flac speex icu opusWithCustomModes
|
||||
libevent expat libjpeg snappy
|
||||
libpng libxml2 libxslt
|
||||
libpng libxml2 libxslt libcap
|
||||
xdg_utils yasm minizip libwebp
|
||||
libusb1 libexif
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue