Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
fake # Fake
];
} Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
fake # Fake
];
} Package Definition
{
"pname": "fake",
"version": "1.9.1",
"src": {
"url": "https://fakeapp.com/dist/Fake_1.9.1.zip",
"sha256": "eb4f02a3b5dea2cab679c1366f454a22d8bb4bbfa448c56c0ca00bb615d8867e"
},
"installPhase": [
"mkdir -p \"$out/Applications/Fake.app\" && cp -r \"Fake.app\" \"$out/Applications\""
],
"meta": {
"description": "Browser for web automation and testing",
"homepage": "https://fakeapp.com/"
}
}