at 23.11-beta 25 lines 782 B view raw
1{ buildGoModule, lib, fetchFromGitLab }: 2 3buildGoModule rec { 4 pname = "gitlab-pages"; 5 version = "16.5.1"; 6 7 # nixpkgs-update: no auto update 8 src = fetchFromGitLab { 9 owner = "gitlab-org"; 10 repo = "gitlab-pages"; 11 rev = "v${version}"; 12 hash = "sha256-1fcsliorkl118MyUnZ3yrQjwLBQGsNBBA4dIEFHBJAI="; 13 }; 14 15 vendorHash = "sha256-YG+ERETxp0BPh/V4820pMXTXu9YcodRhzme6qZJBC9Q="; 16 subPackages = [ "." ]; 17 18 meta = with lib; { 19 description = "Daemon used to serve static websites for GitLab users"; 20 homepage = "https://gitlab.com/gitlab-org/gitlab-pages"; 21 changelog = "https://gitlab.com/gitlab-org/gitlab-pages/-/blob/v${version}/CHANGELOG.md"; 22 license = licenses.mit; 23 maintainers = with maintainers; [ ajs124 das_j ] ++ teams.gitlab.members; 24 }; 25}