Mozilla Thunderbird icon

Mozilla Thunderbird 144.0.1

Customizable email client

Installation

System wide:

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

Home Manager:

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

Package Definition

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