Mozilla Thunderbird ESR icon

Mozilla Thunderbird ESR 128.5.1esr

Customizable email client

Installation

System wide:

{
  environment.systemPackages = with nix-casks.packages.${system}; [
    thunderbird_esr # Mozilla Thunderbird ESR
  ];
}

Home Manager:

{
  home.packages = with nix-casks.packages.${system}; [
    thunderbird_esr # Mozilla Thunderbird ESR
  ];
}

Package Definition

{
  "pname": "thunderbird_esr",
  "version": "128.5.1esr",
  "src": {
    "url": "https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/128.5.1esr/mac/en-US/Thunderbird%20128.5.1esr.dmg",
    "sha256": "c9d50d570c1bff68096066cf271d15e411392f1b2e02faf6ddc043c8109aa879"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications\" && cp -r \"Thunderbird.app\" \"$out/Applications/Thunderbird.app\""
  ],
  "meta": {
    "description": "Customizable email client",
    "homepage": "https://www.thunderbird.net/en-US/download/esr/"
  }
}