Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
the-battle-for-wesnoth # The Battle for Wesnoth
];
}
Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
the-battle-for-wesnoth # The Battle for Wesnoth
];
}
Package Definition
{
"pname": "the-battle-for-wesnoth",
"version": "1.18.2",
"src": {
"url": "https://downloads.sourceforge.net/wesnoth/Wesnoth_1.18.2.dmg",
"sha256": "d53dc8ab64a59e69736bc4e1087e0fc69df5187be9bb3b9c01a86f58a81221af"
},
"installPhase": [
"mkdir -p \"$out/Applications\" && cp -r \"The Battle for Wesnoth.app\" \"$out/Applications/The Battle for Wesnoth.app\""
],
"meta": {
"description": "Fantasy-themed turn-based strategy game",
"homepage": "https://www.wesnoth.org/"
}
}