Skip to content

Commit 4e8aea4

Browse files
committedMay 4, 2017
thunderbird: fix missing icons
It's just a fallback in case the user has no icon theme on path.
1 parent 700d618 commit 4e8aea4

File tree

1 file changed

+2
-2
lines changed
  • pkgs/applications/networking/mailreaders/thunderbird

1 file changed

+2
-2
lines changed
 

‎pkgs/applications/networking/mailreaders/thunderbird/default.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
, cairo, gstreamer, gst-plugins-base, icu, libpng, jemalloc
77
, autoconf213, which, m4
88
, writeScript, xidel, common-updater-scripts, coreutils, gnused, gnugrep, curl
9-
, enableGTK3 ? false, gtk3, wrapGAppsHook, makeWrapper
9+
, enableGTK3 ? false, gtk3, gnome3, wrapGAppsHook, makeWrapper
1010
, enableCalendar ? true
1111
, debugBuild ? false
1212
, # If you want the resulting program to call itself "Thunderbird" instead
@@ -47,7 +47,7 @@ in stdenv.mkDerivation rec {
4747
hunspell libevent libstartup_notification /* cairo */
4848
icu libpng jemalloc
4949
]
50-
++ lib.optional enableGTK3 gtk3;
50+
++ lib.optionals enableGTK3 [ gtk3 gnome3.defaultIconTheme ];
5151

5252
# from firefox + m4 + wrapperTool
5353
nativeBuildInputs = [ m4 autoconf213 which gnused pkgconfig perl python wrapperTool ];

0 commit comments

Comments
 (0)
Please sign in to comment.