Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
stella # Stella
];
}
Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
stella # Stella
];
}
Package Definition
{
"pname": "stella",
"version": "7.0",
"src": {
"url": "https://github.com/stella-emu/stella/releases/download/7.0/Stella-7.0-macos.dmg",
"sha256": "dcd6de1baf5b2fdcf655478eb04d3fb8e65e3cdaed2e04cd6c5347b3149c1eed"
},
"installPhase": [
"mkdir -p \"$out/Applications/Stella.app\" && cp -r \"Stella.app\" \"$out/Applications\""
],
"meta": {
"description": "Multi-platform Atari 2600 Emulator",
"homepage": "https://stella-emu.github.io/"
}
}