summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/firefox
diff options
context:
space:
mode:
authorA1ca7raz <7345998+A1ca7raz@users.noreply.github.com>2023-10-02 10:39:05 +0000
committerA1ca7raz <7345998+A1ca7raz@users.noreply.github.com>2023-10-02 19:58:16 +0800
commit64b870f0e29710fd4455207089283c6d44f72e03 (patch)
tree23e6a456bf880e398d77f7915e1b064b4b987c9c /pkgs/applications/networking/browsers/firefox
parent0533f4e43d9727ec20427bc2438fd1432a68f208 (diff)
downloadnixpkgs-64b870f0e29710fd4455207089283c6d44f72e03.tar
nixpkgs-64b870f0e29710fd4455207089283c6d44f72e03.tar.gz
nixpkgs-64b870f0e29710fd4455207089283c6d44f72e03.tar.bz2
nixpkgs-64b870f0e29710fd4455207089283c6d44f72e03.tar.lz
nixpkgs-64b870f0e29710fd4455207089283c6d44f72e03.tar.xz
nixpkgs-64b870f0e29710fd4455207089283c6d44f72e03.tar.zst
nixpkgs-64b870f0e29710fd4455207089283c6d44f72e03.zip
thunderbird: add libcanberra to libs to fix notification sound
Diffstat (limited to 'pkgs/applications/networking/browsers/firefox')
-rw-r--r--pkgs/applications/networking/browsers/firefox/wrapper.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/networking/browsers/firefox/wrapper.nix b/pkgs/applications/networking/browsers/firefox/wrapper.nix
index 12924180c25..123d597031c 100644
--- a/pkgs/applications/networking/browsers/firefox/wrapper.nix
+++ b/pkgs/applications/networking/browsers/firefox/wrapper.nix
@@ -85,7 +85,8 @@ let
             ++ lib.optional jackSupport libjack2
             ++ lib.optional smartcardSupport opensc
             ++ lib.optional (cfg.speechSynthesisSupport or false) speechd
-            ++ pkcs11Modules;
+            ++ pkcs11Modules
+            ++ gtk_modules;
       gtk_modules = [ libcanberra-gtk3 ];
 
       launcherName = "${applicationName}${nameSuffix}";