From fce71133457f470bae620dc96d267e6204b51d44 Mon Sep 17 00:00:00 2001 From: aszlig Date: Mon, 27 Apr 2015 06:58:58 +0200 Subject: [PATCH] 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 --- pkgs/applications/networking/browsers/chromium/common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix index 14d53357b89..247a27ca37b 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -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 ];