Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
dash # Dash
];
}
Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
dash # Dash
];
}
Package Definition
{
"pname": "dash",
"version": "7.3.3",
"src": {
"url": "https://kapeli.com/downloads/v7/Dash.zip",
"sha256": "444ed45998a6b486ee682f375f9550f63b5aed9811d0eca7596261c65fe98dd2"
},
"installPhase": [
"mkdir -p \"$out/Applications\" && cp -r \"Dash.app\" \"$out/Applications/Dash.app\""
],
"meta": {
"description": "API documentation browser and code snippet manager",
"homepage": "https://kapeli.com/dash"
}
}