Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
gitup-app # GitUp
];
}
Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
gitup-app # GitUp
];
}
Package Definition
{
"pname": "gitup-app",
"version": "1.4.3",
"src": {
"url": "https://github.com/git-up/GitUp/releases/download/v1.4.3/GitUp.zip",
"sha256": "f0f1896dae7a17e3f51f6872cc57a79061ab3f47692d64b5a8216cfb6dddb4dc"
},
"installPhase": [
"mkdir -p \"$out/Applications/GitUp.app\" && cp -r \"GitUp.app\" \"$out/Applications\"",
"mkdir -p \"$out/bin\" && ln -s \"$out/Applications/GitUp.app/Contents/SharedSupport/gitup\" \"$out/bin/gitup\""
],
"meta": {
"description": "Git interface focused on visual interaction",
"homepage": "https://gitup.co/"
}
}