159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
26 lines
812 B
Nix
26 lines
812 B
Nix
{ buildGoModule, lib, fetchFromGitLab }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gitlab-pages";
|
|
version = "17.2.5";
|
|
|
|
# nixpkgs-update: no auto update
|
|
src = fetchFromGitLab {
|
|
owner = "gitlab-org";
|
|
repo = "gitlab-pages";
|
|
rev = "v${version}";
|
|
hash = "sha256-5qksHuY7EzCoCMBxF4souvUz8xFstfzOZT3CF5YsV7M=";
|
|
};
|
|
|
|
vendorHash = "sha256-yNHeM8MExcLwv2Ga4vtBmPFBt/Rj7Gd4QQYDlnAIo+c=";
|
|
subPackages = [ "." ];
|
|
|
|
meta = with lib; {
|
|
description = "Daemon used to serve static websites for GitLab users";
|
|
mainProgram = "gitlab-pages";
|
|
homepage = "https://gitlab.com/gitlab-org/gitlab-pages";
|
|
changelog = "https://gitlab.com/gitlab-org/gitlab-pages/-/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = teams.helsinki-systems.members ++ teams.gitlab.members;
|
|
};
|
|
}
|