summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders/thunderbird
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-05-04 22:53:45 +0200
committerVladimír Čunát <vcunat@gmail.com>2017-05-04 22:54:30 +0200
commit4e8aea4339876b19c675011bfa586510fe4cfc7b (patch)
treea37d8ee4c2c30e699242f16024d1b12053fc1406 /pkgs/applications/networking/mailreaders/thunderbird
parent700d6186a30e9e8118a6b319f12cb5cfb9d086bd (diff)
downloadnixlib-4e8aea4339876b19c675011bfa586510fe4cfc7b.tar
nixlib-4e8aea4339876b19c675011bfa586510fe4cfc7b.tar.gz
nixlib-4e8aea4339876b19c675011bfa586510fe4cfc7b.tar.bz2
nixlib-4e8aea4339876b19c675011bfa586510fe4cfc7b.tar.lz
nixlib-4e8aea4339876b19c675011bfa586510fe4cfc7b.tar.xz
nixlib-4e8aea4339876b19c675011bfa586510fe4cfc7b.tar.zst
nixlib-4e8aea4339876b19c675011bfa586510fe4cfc7b.zip
thunderbird: fix missing icons
It's just a fallback in case the user has no icon theme on path.
Diffstat (limited to 'pkgs/applications/networking/mailreaders/thunderbird')
-rw-r--r--pkgs/applications/networking/mailreaders/thunderbird/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
index 501e71807839..2a942ce14f3e 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird/default.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
@@ -6,7 +6,7 @@
 , cairo, gstreamer, gst-plugins-base, icu, libpng, jemalloc
 , autoconf213, which, m4
 , writeScript, xidel, common-updater-scripts, coreutils, gnused, gnugrep, curl
-, enableGTK3 ? false, gtk3, wrapGAppsHook, makeWrapper
+, enableGTK3 ? false, gtk3, gnome3, wrapGAppsHook, makeWrapper
 , enableCalendar ? true
 , debugBuild ? false
 , # If you want the resulting program to call itself "Thunderbird" instead
@@ -47,7 +47,7 @@ in stdenv.mkDerivation rec {
       hunspell libevent libstartup_notification /* cairo */
       icu libpng jemalloc
     ]
-    ++ lib.optional enableGTK3 gtk3;
+    ++ lib.optionals enableGTK3 [ gtk3 gnome3.defaultIconTheme ];
 
   # from firefox + m4 + wrapperTool
   nativeBuildInputs = [ m4 autoconf213 which gnused pkgconfig perl python wrapperTool ];