[Backport release-26.05] thunderbird-153: init at 153.0.1esr; thunderbird-latest: 152.0.1 -> 153.0 (#545320)

This commit is contained in:
Ihar Hrachyshka
2026-07-25 03:01:47 +00:00
committed by GitHub
2 changed files with 18 additions and 2 deletions

View File

@@ -77,8 +77,8 @@ rec {
thunderbird = thunderbird-latest;
thunderbird-latest = common {
version = "152.0.1";
sha512 = "f66c87de4dd73c3c45e420a55d76c3cb6ac091a61794ccf58ba59d1a40cf8001dee19a6a7f4c6bef7d36ea94ed4e4f677449d3006b2004abbd3fab42ad1c9228";
version = "153.0";
sha512 = "f77bde3dd0933dd35870a889386c41d55ff0cbe276ec3373b27e9885f7db7e35529e7ecc2fc149ae4f8c5ae53eddb3ad444e7499a850a59a82b8940c7a4c7747";
updateScript = callPackage ./update.nix {
attrPath = "thunderbirdPackages.thunderbird-latest";
@@ -88,6 +88,19 @@ rec {
# Eventually, switch to an updateScript without versionPrefix hardcoded...
thunderbird-esr = thunderbird-140;
thunderbird-153 = common {
applicationName = "Thunderbird ESR";
version = "153.0.1esr";
sha512 = "3773b49b69341aea108a627faa0dd5b7cfb52cdb4c37e625fbb8cbaef7f9166f925ecbc199173302d5bef7994e6bff3b56cd56a3a4c38a9d702cc3e5aeafcf7c";
updateScript = callPackage ./update.nix {
attrPath = "thunderbirdPackages.thunderbird-153";
versionPrefix = "153";
versionSuffix = "esr";
};
};
thunderbird-140 = common {
applicationName = "Thunderbird ESR";

View File

@@ -9915,6 +9915,9 @@ with pkgs;
thunderbird-esr-unwrapped = thunderbirdPackages.thunderbird-esr;
thunderbird-esr = wrapThunderbird thunderbird-esr-unwrapped { };
thunderbird-153-unwrapped = thunderbirdPackages.thunderbird-153;
thunderbird-153 = wrapThunderbird thunderbirdPackages.thunderbird-153 { };
thunderbird-140-unwrapped = thunderbirdPackages.thunderbird-140;
thunderbird-140 = wrapThunderbird thunderbirdPackages.thunderbird-140 { };