2020-07-18 17:46:13 +02:00
|
|
|
{ buildGoModule, lib, fetchFromGitLab }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gitlab-pages";
|
2024-05-08 16:18:51 +02:00
|
|
|
version = "16.10.5";
|
2020-07-18 17:46:13 +02:00
|
|
|
|
2023-10-24 13:58:51 +02:00
|
|
|
# nixpkgs-update: no auto update
|
2020-07-18 17:46:13 +02:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "gitlab-org";
|
|
|
|
repo = "gitlab-pages";
|
|
|
|
rev = "v${version}";
|
2024-05-08 16:18:51 +02:00
|
|
|
hash = "sha256-wuEYcwAKYO7YZs88NvE0AI5+aZ9JeLBAeXITc2jLGVo=";
|
2020-07-18 17:46:13 +02:00
|
|
|
};
|
|
|
|
|
2024-03-20 16:06:04 +01:00
|
|
|
vendorHash = "sha256-WrR4eZRAuYkhr7ZqP7OXqJ6uwvxzn+t+3OdBNcNaq0M=";
|
2020-07-18 17:46:13 +02:00
|
|
|
subPackages = [ "." ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Daemon used to serve static websites for GitLab users";
|
2024-03-19 03:14:51 +01:00
|
|
|
mainProgram = "gitlab-pages";
|
2020-07-18 17:46:13 +02:00
|
|
|
homepage = "https://gitlab.com/gitlab-org/gitlab-pages";
|
2021-04-28 17:42:45 +02:00
|
|
|
changelog = "https://gitlab.com/gitlab-org/gitlab-pages/-/blob/v${version}/CHANGELOG.md";
|
2020-07-18 17:46:13 +02:00
|
|
|
license = licenses.mit;
|
2023-11-17 13:35:31 +01:00
|
|
|
maintainers = teams.helsinki-systems.members ++ teams.gitlab.members;
|
2020-07-18 17:46:13 +02:00
|
|
|
};
|
|
|
|
}
|