2020-07-18 15:46:13 +00:00
|
|
|
{ buildGoModule, lib, fetchFromGitLab }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gitlab-pages";
|
2024-11-29 16:51:19 +00:00
|
|
|
version = "17.5.2";
|
2020-07-18 15:46:13 +00:00
|
|
|
|
2023-10-24 11:58:51 +00:00
|
|
|
# nixpkgs-update: no auto update
|
2020-07-18 15:46:13 +00:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "gitlab-org";
|
|
|
|
repo = "gitlab-pages";
|
|
|
|
rev = "v${version}";
|
2024-11-29 16:51:19 +00:00
|
|
|
hash = "sha256-fjoby/fTh1wAidyOQSqx7VolxzSB0TQYvltJhYduDSY=";
|
2020-07-18 15:46:13 +00:00
|
|
|
};
|
|
|
|
|
2024-11-29 16:51:19 +00:00
|
|
|
vendorHash = "sha256-M2RQPkLWsi9rHXI3lSb9w9nxiklTkV8wpC9VoH0SP6M=";
|
2020-07-18 15:46:13 +00:00
|
|
|
subPackages = [ "." ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Daemon used to serve static websites for GitLab users";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "gitlab-pages";
|
2020-07-18 15:46:13 +00:00
|
|
|
homepage = "https://gitlab.com/gitlab-org/gitlab-pages";
|
2021-04-28 15:42:45 +00:00
|
|
|
changelog = "https://gitlab.com/gitlab-org/gitlab-pages/-/blob/v${version}/CHANGELOG.md";
|
2020-07-18 15:46:13 +00:00
|
|
|
license = licenses.mit;
|
2024-11-04 11:59:26 +00:00
|
|
|
maintainers = teams.gitlab.members;
|
2020-07-18 15:46:13 +00:00
|
|
|
};
|
|
|
|
}
|