Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
redis-insight # Redis Insight
];
} Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
redis-insight # Redis Insight
];
} Package Definition
{
"pname": "redis-insight",
"version": "2.70.1",
"src": {
"url": "https://download.redisinsight.redis.com/releases/2.70.1/Redis-Insight-mac-arm64.dmg",
"sha256": "2ef847845b5cc725050d4ab78992afb9afccd01ee8e84f49a77bfb6e1f9fcb34"
},
"installPhase": [
"mkdir -p \"$out/Applications/Redis Insight.app\" && cp -r \"Redis Insight.app\" \"$out/Applications\""
],
"meta": {
"description": "GUI for streamlined Redis application development",
"homepage": "https://redis.io/insight/"
}
}