about summary refs log tree commit diff
path: root/nixpkgs
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2020-09-21 11:51:25 +0200
committerAlyssa Ross <hi@alyssa.is>2020-09-29 11:53:42 +0000
commite0e06cdd72ed75c27567744a530453257bcf9c0a (patch)
tree2c1b7d5a8fec356a5eeb4d875d2f0bf246777bbc /nixpkgs
parent2f2d19ce88e94b51149c7e1e9bb79db04f82e92c (diff)
downloadnixlib-e0e06cdd72ed75c27567744a530453257bcf9c0a.tar
nixlib-e0e06cdd72ed75c27567744a530453257bcf9c0a.tar.gz
nixlib-e0e06cdd72ed75c27567744a530453257bcf9c0a.tar.bz2
nixlib-e0e06cdd72ed75c27567744a530453257bcf9c0a.tar.lz
nixlib-e0e06cdd72ed75c27567744a530453257bcf9c0a.tar.xz
nixlib-e0e06cdd72ed75c27567744a530453257bcf9c0a.tar.zst
nixlib-e0e06cdd72ed75c27567744a530453257bcf9c0a.zip
thunderbird-78: fix #97994: broken UI in 78.2.2
(cherry picked from commit 114202e369150a0d202103bcb6c92b21058d3db8)
Diffstat (limited to 'nixpkgs')
-rw-r--r--nixpkgs/pkgs/applications/networking/mailreaders/thunderbird/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/nixpkgs/pkgs/applications/networking/mailreaders/thunderbird/default.nix
index cea780ec861e..aecc8379dd48 100644
--- a/nixpkgs/pkgs/applications/networking/mailreaders/thunderbird/default.nix
+++ b/nixpkgs/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 = ''