Mozilla Thunderbird icon

Mozilla Thunderbird 144.0

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",
  "src": {
    "url": "https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/144.0/mac/en-US/Thunderbird%20144.0.dmg",
    "sha256": "69cbd7b9caefcc64737ea9af07f7bd3cf80419a8aeaa8d1a1b2d9ebf9df2c400"
  },
  "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/"
  }
}