GitKraken icon

GitKraken 11.0.0

Git client focusing on productivity

Installation

System wide:

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

Home Manager:

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

Package Definition

{
  "pname": "gitkraken",
  "version": "11.0.0",
  "src": {
    "url": "https://release.axocdn.com/darwin-arm64/GitKraken-v11.0.0.zip",
    "sha256": "ce4ae43bb7c182f4fb6d9e8ca888f5039fe26e0ed6b30b4064c6dad03964b9d0"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications/GitKraken.app\" && cp -r \"GitKraken.app\" \"$out/Applications\""
  ],
  "meta": {
    "description": "Git client focusing on productivity",
    "homepage": "https://www.gitkraken.com/"
  }
}