Goland icon

Goland 2024.3.1,243.22562.186

Go (golang) IDE

Installation

System wide:

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

Home Manager:

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

Package Definition

{
  "pname": "goland",
  "version": "2024.3.1,243.22562.186",
  "src": {
    "url": "https://download.jetbrains.com/go/goland-2024.3.1-aarch64.dmg",
    "sha256": "4805e527a7d0cb66c278fcdba70468e14854defc3619edad439763d355303eba"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications\" && cp -r \"GoLand.app\" \"$out/Applications/GoLand.app\"",
    "mkdir -p \"$out/bin\" && ln -s \"$out/Applications/GoLand.app/Contents/MacOS/goland\" \"$out/bin/goland\""
  ],
  "meta": {
    "description": "Go (golang) IDE",
    "homepage": "https://www.jetbrains.com/go/"
  }
}