From 17807c8b6cb7fd9f50bce98bb4557e202c571325 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 4 May 2014 06:54:57 +0200 Subject: [PATCH] chromium: Link against pulse instead of dlopen(). This fixes the issue of Chromium not being able to load the pulseaudio librarp We could also propagate the build inputs, but it would end up being the same as just directoly linking against the library. Thanks to @aristidb for noticing this in #2421: https://github.com/NixOS/nixpkgs/pull/2421#issuecomment-42113656 Signed-off-by: aszlig --- pkgs/applications/networking/browsers/chromium/common.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix index 7bed83ac4c6d..dcc2a97547ab 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -148,6 +148,7 @@ let use_gconf = gnomeSupport; use_gio = gnomeSupport; use_pulseaudio = pulseSupport; + linux_link_pulseaudio = pulseSupport; disable_nacl = !enableNaCl; use_openssl = useOpenSSL; selinux = enableSELinux;