thunderbird: fix missing icons

It's just a fallback in case the user has no icon theme on path.
This commit is contained in:
Vladimír Čunát 2017-05-04 22:53:45 +02:00
parent 700d6186a3
commit 4e8aea4339
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -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 ];