about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2020-09-21 11:51:25 +0200
committerVladimír Čunát <v@cunat.cz>2020-09-21 17:31:26 +0200
commit114202e369150a0d202103bcb6c92b21058d3db8 (patch)
tree01137b02565e8da51c9e8921b336c5acc12a2e48
parentcf09899749d29f659d64c4a27a188b177f6026b9 (diff)
thunderbird-78: fix #97994: broken UI in 78.2.2
-rw-r--r--pkgs/applications/networking/mailreaders/thunderbird/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
index e6b279fd35c1d..4f122cde02dcf 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird/default.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
@@ -6,6 +6,7 @@
 , curl
 , dbus
 , dbus-glib
+, fetchpatch
 , fetchurl
 , file
 , fontconfig
@@ -146,6 +147,13 @@ stdenv.mkDerivation rec {
 
   patches = [
     ./no-buildconfig.patch
+    (fetchpatch { # included in 78.3.0
+      name = "empty-UI.patch";
+      url = "https://hg.mozilla.org/releases/comm-esr78/raw-rev/f085dbd311bc";
+      # paths: {a,b}/foo -> {a,b}/comm/foo
+      stripLen = 1; extraPrefix = "comm/";
+      sha256 = "0x9pw62w93kyd99q9wi2d8llcfzbrqib7fp5kcrjidvhnkxpr6j7";
+    })
   ];
 
   postPatch = ''