Mozilla Thunderbird icon

Mozilla Thunderbird 143.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": "143.0.1",
  "src": {
    "url": "https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/143.0.1/mac/en-US/Thunderbird%20143.0.1.dmg",
    "sha256": "de252ac86143c2855a9ef5fde1abbeef59d67db552eedd3c948ccc2a2de46eb0"
  },
  "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/"
  }
}