Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
airtable # Airtable
];
} Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
airtable # Airtable
];
} Package Definition
{
"pname": "airtable",
"version": "1.6.6",
"src": {
"url": "https://static.airtable.com/download/macos/Airtable-1.6.6.dmg",
"sha256": "cc677bb77a76437cf423cb49675bdbb6e54840f1c29ea80d3910f2ed41ceb627"
},
"installPhase": [
"mkdir -p \"$out/Applications/Airtable.app\" && cp -r \"Airtable.app\" \"$out/Applications\""
],
"meta": {
"description": "Spreadsheet-database hybrid cloud collaboration",
"homepage": "https://airtable.com/"
}
}