Gephi icon

Gephi 0.10.1

Open-source platform for visualizing and manipulating large graphs

Installation

System wide:

{
  environment.systemPackages = with nix-casks.packages.${system}; [
    gephi # Gephi
  ];
}

Home Manager:

{
  home.packages = with nix-casks.packages.${system}; [
    gephi # Gephi
  ];
}

Package Definition

{
  "pname": "gephi",
  "version": "0.10.1",
  "src": {
    "url": "https://github.com/gephi/gephi/releases/download/v0.10.1/gephi-0.10.1-macos-aarch64.dmg",
    "sha256": "cbb852d2f33cddf793290a64aee564cd46ad80ef6c51766ad05dfeb801ac7227"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications/Gephi.app\" && cp -r \"Gephi.app\" \"$out/Applications\""
  ],
  "meta": {
    "description": "Open-source platform for visualizing and manipulating large graphs",
    "homepage": "https://gephi.org/"
  }
}