From 6f487b1045372ce73feecb1090bac19fe1855134 Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Thu, 23 Jul 2026 18:48:56 -0400 Subject: [PATCH] thunderbird-153: init at 153.0.1esr https://www.thunderbird.net/en-US/thunderbird/153.0esr/releasenotes/ --- .../networking/mailreaders/thunderbird/packages.nix | 13 +++++++++++++ pkgs/top-level/all-packages.nix | 3 +++ 2 files changed, 16 insertions(+) diff --git a/pkgs/applications/networking/mailreaders/thunderbird/packages.nix b/pkgs/applications/networking/mailreaders/thunderbird/packages.nix index c505fc632dfc..e7dafcc144ca 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird/packages.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird/packages.nix @@ -89,6 +89,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"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c33b87cd6b67..99b22fed773f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9433,6 +9433,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 { };