Geany icon

Geany 2.1

Small and lightweight IDE

Installation

System wide:

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

Home Manager:

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

Package Definition

{
  "pname": "geany",
  "version": "2.1",
  "src": {
    "url": "https://download.geany.org/geany-2.1_osx_arm64.dmg",
    "sha256": "13d6f0977c784193ffc1bad05e1a8b77f14f2a71f37ab158c788d33cb6203f80"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications/Geany.app\" && cp -r \"Geany.app\" \"$out/Applications\""
  ],
  "meta": {
    "description": "Small and lightweight IDE",
    "homepage": "https://www.geany.org/"
  }
}