Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
support # Support App
];
} Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
support # Support App
];
} Package Definition
{
"pname": "support",
"version": "3.0",
"src": {
"url": "https://github.com/root3nl/SupportApp/releases/download/v3.0/Support.3.0.zip",
"sha256": "fc90b88d20defc7a6d05c8ea9e1dee0313a585aa2be4418d1c2a75b83cafe0f1"
},
"installPhase": [
"mkdir -p \"$out/Applications/Support.app\" && cp -r \"Support.app\" \"$out/Applications\""
],
"meta": {
"description": "Menu bar app for user and help desk support",
"homepage": "https://github.com/root3nl/SupportApp"
}
}