Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
appium # Appium Server Desktop GUI
];
} Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
appium # Appium Server Desktop GUI
];
} Package Definition
{
"pname": "appium",
"version": "1.22.3-4",
"src": {
"url": "https://github.com/appium/appium-desktop/releases/download/v1.22.3-4/Appium-Server-GUI-mac-1.22.3-4.dmg",
"sha256": "907265e27ba854f4ec66c2fea55ac2f8756264783d69b000d447b841d407e753"
},
"installPhase": [
"mkdir -p \"$out/Applications/Appium Server GUI.app\" && cp -r \"Appium Server GUI.app\" \"$out/Applications\""
],
"meta": {
"description": "Graphical frontend to Appium automation server",
"homepage": "https://appium.io/"
}
}