Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
fastmail # Fastmail
];
}
Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
fastmail # Fastmail
];
}
Package Definition
{
"pname": "fastmail",
"version": "1.0.1",
"src": {
"url": "https://dl.fastmailcdn.com/desktop/production/mac/arm64/Fastmail-1.0.1-arm64-mac.zip",
"sha256": "dbb2aba36032135a498c9d9bfc5fbaaadcbd83c9524e1a2ae096a195ab3d7082"
},
"installPhase": [
"mkdir -p \"$out/Applications/Fastmail.app\" && cp -r \"Fastmail.app\" \"$out/Applications\""
],
"meta": {
"description": "Email client",
"homepage": "https://www.fastmail.com/"
}
}