Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
neo4j-desktop # Neo4j Desktop
];
} Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
neo4j-desktop # Neo4j Desktop
];
} Package Definition
{
"pname": "neo4j-desktop",
"version": "2.1.1",
"src": {
"url": "https://dist.neo4j.org/neo4j-desktop-2/mac/neo4j-desktop-2.1.1-universal.dmg",
"sha256": "1fb305456ee3f956b1d96d3a3c0779973cd3bc92781329569b72b7ba3b181c14"
},
"installPhase": [
"mkdir -p \"$out/Applications/Neo4j Desktop 2.app\" && cp -r \"Neo4j Desktop 2.app\" \"$out/Applications\""
],
"meta": {
"description": "Developer IDE or Management Environment for Neo4j instances",
"homepage": "https://neo4j.com/download/"
}
}