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.5",
"src": {
"url": "https://github.com/root3nl/SupportApp/releases/download/v3.0.5/Support.3.0.5.zip",
"sha256": "b19fde9f2e86d84a335d6f550dae2cc9b662b4311f9ef0f31eb7ff40610460cf"
},
"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"
}
}