Merge pull request #107016 from tobiasBora/2020_thunderbird_add_icon
thunderbird: fix missing icon issue
This commit is contained in:
commit
0ca60d3ba0
|
@ -268,7 +268,7 @@ stdenv.mkDerivation rec {
|
|||
genericName = "Mail Reader";
|
||||
name = "thunderbird";
|
||||
exec = "thunderbird %U";
|
||||
icon = "$out/lib/thunderbird/chrome/icons/default/default256.png";
|
||||
icon = "thunderbird";
|
||||
mimeType = lib.concatStringsSep ";" [
|
||||
# Email
|
||||
"x-scheme-handler/mailto"
|
||||
|
@ -288,6 +288,7 @@ stdenv.mkDerivation rec {
|
|||
postInstall = ''
|
||||
# TODO: Move to a dev output?
|
||||
rm -rf $out/include $out/lib/thunderbird-devel-* $out/share/idl
|
||||
install -Dm 444 $out/lib/thunderbird/chrome/icons/default/default256.png $out/share/icons/hicolor/256x256/apps/thunderbird.png
|
||||
'';
|
||||
|
||||
# Note on GPG support:
|
||||
|
|
Loading…
Reference in New Issue