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";
|
genericName = "Mail Reader";
|
||||||
name = "thunderbird";
|
name = "thunderbird";
|
||||||
exec = "thunderbird %U";
|
exec = "thunderbird %U";
|
||||||
icon = "$out/lib/thunderbird/chrome/icons/default/default256.png";
|
icon = "thunderbird";
|
||||||
mimeType = lib.concatStringsSep ";" [
|
mimeType = lib.concatStringsSep ";" [
|
||||||
# Email
|
# Email
|
||||||
"x-scheme-handler/mailto"
|
"x-scheme-handler/mailto"
|
||||||
|
@ -288,6 +288,7 @@ stdenv.mkDerivation rec {
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
# TODO: Move to a dev output?
|
# TODO: Move to a dev output?
|
||||||
rm -rf $out/include $out/lib/thunderbird-devel-* $out/share/idl
|
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:
|
# Note on GPG support:
|
||||||
|
|
Loading…
Reference in New Issue