Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
go64 # Go64
];
} Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
go64 # Go64
];
} Package Definition
{
"pname": "go64",
"version": "1.5",
"src": {
"url": "https://www.stclairsoft.com/download/Go64-1.5.zip",
"sha256": "1909511d64852e7b203357d37f7c1db4c01cb869a3e703ce338737d59b27188d"
},
"installPhase": [
"mkdir -p \"$out/Applications/Go64.app\" && cp -r \"Go64.app\" \"$out/Applications\""
],
"meta": {
"description": "Scan computer disk for 32-bit applications",
"homepage": "https://www.stclairsoft.com/Go64/"
}
}