Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
icons # Icons
];
} Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
icons # Icons
];
} Package Definition
{
"pname": "icons",
"version": "1.1",
"src": {
"url": "https://github.com/exherb/icons/releases/download/1.1/icons-v1.1-macos-x64.zip",
"sha256": "aff6836c0425c845afbc4d71579ebd8adf4d161f03413939ee8579b23782159a"
},
"installPhase": [
"mkdir -p \"$out/Applications/Icons.app\" && cp -r \"Icons.app\" \"$out/Applications\""
],
"meta": {
"description": "Tool to generate icons for apps",
"homepage": "https://github.com/exherb/icons"
}
}