Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
not-tetris # Not Tetris
];
}
Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
not-tetris # Not Tetris
];
}
Package Definition
{
"pname": "not-tetris",
"version": "2",
"src": {
"url": "https://stabyourself.net/dl.php?file=nottetris2/nottetris2-osx.zip",
"sha256": "ddb4df7f9169e1a03cb5f81e67b972cca4470e4925973af452f6e467830aaea8"
},
"installPhase": [
"mkdir -p \"$out/Applications/Not Tetris 2.app\" && cp -r \"Not Tetris 2.app\" \"$out/Applications\""
],
"meta": {
"description": "Successor of the classic Tetris mixed with physics",
"homepage": "https://stabyourself.net/nottetris2/"
}
}