thunderbirdPackages.thunderbird-115: patch icu for issues with non-compliant VTIMEZONE
This commit is contained in:
parent
0ebafdb842
commit
fe8579492b
1 changed files with 12 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, lib, buildMozillaMach, callPackage, fetchurl, fetchpatch, nixosTests }:
|
{ stdenv, lib, buildMozillaMach, callPackage, fetchurl, fetchpatch, nixosTests, icu, fetchpatch2 }:
|
||||||
|
|
||||||
rec {
|
rec {
|
||||||
thunderbird = thunderbird-115;
|
thunderbird = thunderbird-115;
|
||||||
|
@ -75,5 +75,16 @@ rec {
|
||||||
webrtcSupport = false;
|
webrtcSupport = false;
|
||||||
|
|
||||||
pgoSupport = false; # console.warn: feeds: "downloadFeed: network connection unavailable"
|
pgoSupport = false; # console.warn: feeds: "downloadFeed: network connection unavailable"
|
||||||
|
|
||||||
|
icu = icu.overrideAttrs (attrs: {
|
||||||
|
# standardize vtzone output
|
||||||
|
# Work around ICU-22132 https://unicode-org.atlassian.net/browse/ICU-22132
|
||||||
|
# https://bugzilla.mozilla.org/show_bug.cgi?id=1790071
|
||||||
|
patches = attrs.patches ++ [(fetchpatch2 {
|
||||||
|
url = "https://hg.mozilla.org/mozilla-central/raw-file/fb8582f80c558000436922fb37572adcd4efeafc/intl/icu-patches/bug-1790071-ICU-22132-standardize-vtzone-output.diff";
|
||||||
|
stripLen = 3;
|
||||||
|
hash = "sha256-MGNnWix+kDNtLuACrrONDNcFxzjlUcLhesxwVZFzPAM=";
|
||||||
|
})];
|
||||||
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue