Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
geekbench # Geekbench
];
}
Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
geekbench # Geekbench
];
}
Package Definition
{
"pname": "geekbench",
"version": "6.5.0",
"src": {
"url": "https://cdn.geekbench.com/Geekbench-6.5.0-Mac.zip",
"sha256": "6705638d99ff1e1e0cd1f108f89f7d4e53df79f6230f375e447639f25832136d"
},
"installPhase": [
"mkdir -p \"$out/Applications/Geekbench 6.app\" && cp -r \"Geekbench 6.app\" \"$out/Applications\""
],
"meta": {
"description": "Tool to measure the computer system's performance",
"homepage": "https://www.geekbench.com/"
}
}