GIMP development version icon

GIMP development version 3.0.0-RC2

Free and open-source image editor

Installation

System wide:

{
  environment.systemPackages = with nix-casks.packages.${system}; [
    gimp_dev # GIMP development version
  ];
}

Home Manager:

{
  home.packages = with nix-casks.packages.${system}; [
    gimp_dev # GIMP development version
  ];
}

Package Definition

{
  "pname": "gimp_dev",
  "version": "3.0.0-RC2",
  "src": {
    "url": "https://download.gimp.org/gimp/v3.0/macos/gimp-3.0.0-RC2-arm64.dmg",
    "sha256": "a0e91fb827b335a15ec1c9bd7252408a28278158e138b682ab2284776223836f"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications\" && cp -r \"GIMP.app\" \"$out/Applications/GIMP.app\"",
    "mkdir -p \"$out/bin\" && ln -s \"$out/Applications/GIMP.app/Contents/MacOS/gimp\" \"$out/bin/gimp\""
  ],
  "meta": {
    "description": "Free and open-source image editor",
    "homepage": "https://www.gimp.org/"
  }
}