Go Git Service icon

Go Git Service 0.14.1

Self-hosted Git service

Installation

System wide:

{
  environment.systemPackages = with nix-casks.packages.${system}; [
    gogs # Go Git Service
  ];
}

Home Manager:

{
  home.packages = with nix-casks.packages.${system}; [
    gogs # Go Git Service
  ];
}

Package Definition

{
  "pname": "gogs",
  "version": "0.14.1",
  "src": {
    "url": "https://github.com/gogs/gogs/releases/download/v0.14.1/gogs_0.14.1_darwin_arm64.zip",
    "sha256": "b7904fd28db26741f6fdffa1525238fc4e5dd8a7426db3344ad82be97fba780d"
  },
  "installPhase": [
    "mkdir -p \"$out/bin\" && ln -s \"$out/gogs.wrapper.sh\" \"$out/bin/gogs\""
  ],
  "meta": {
    "description": "Self-hosted Git service",
    "homepage": "https://gogs.io/"
  }
}