2020-10-16 20:44:37 +00:00
|
|
|
{ buildGoModule, lib, fetchFromGitLab }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gitlab-pages";
|
2023-08-04 22:07:22 +00:00
|
|
|
version = "16.1.3";
|
2020-10-16 20:44:37 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "gitlab-org";
|
|
|
|
repo = "gitlab-pages";
|
|
|
|
rev = "v${version}";
|
2023-08-04 22:07:22 +00:00
|
|
|
sha256 = "sha256-FSdew0HMbgEAzVoDhINDIQQs8Q63AHu8mu/dKo+wP9k=";
|
2020-10-16 20:44:37 +00:00
|
|
|
};
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
vendorHash = "sha256-SN4r9hcTTQUr3miv2Cm7iBryyh7yG1xx9lCvq3vQwc0=";
|
2020-10-16 20:44:37 +00:00
|
|
|
subPackages = [ "." ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Daemon used to serve static websites for GitLab users";
|
|
|
|
homepage = "https://gitlab.com/gitlab-org/gitlab-pages";
|
2021-05-03 20:48:10 +00:00
|
|
|
changelog = "https://gitlab.com/gitlab-org/gitlab-pages/-/blob/v${version}/CHANGELOG.md";
|
2020-10-16 20:44:37 +00:00
|
|
|
license = licenses.mit;
|
2023-07-15 17:15:38 +00:00
|
|
|
maintainers = with maintainers; [ ajs124 das_j ] ++ teams.gitlab.members;
|
2020-10-16 20:44:37 +00:00
|
|
|
};
|
|
|
|
}
|