We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c33f2ca commit abf627cCopy full SHA for abf627c
1 file changed
pkgs/applications/networking/mailreaders/thunderbird/default.nix
@@ -6,6 +6,7 @@
6
, curl
7
, dbus
8
, dbus-glib
9
+, fetchpatch
10
, fetchurl
11
, file
12
, fontconfig
@@ -149,6 +150,13 @@ stdenv.mkDerivation rec {
149
150
151
patches = [
152
./no-buildconfig.patch
153
+ (fetchpatch { # included in 78.3.0
154
+ name = "empty-UI.patch";
155
+ url = "https://hg.mozilla.org/releases/comm-esr78/raw-rev/f085dbd311bc";
156
+ # paths: {a,b}/foo -> {a,b}/comm/foo
157
+ stripLen = 1; extraPrefix = "comm/";
158
+ sha256 = "0x9pw62w93kyd99q9wi2d8llcfzbrqib7fp5kcrjidvhnkxpr6j7";
159
+ })
160
];
161
162
postPatch = ''
0 commit comments