2020-07-18 17:46:13 +02:00
|
|
|
{ buildGoModule, lib, fetchFromGitLab }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gitlab-pages";
|
2021-12-11 00:32:58 +01:00
|
|
|
version = "1.48.0";
|
2020-07-18 17:46:13 +02:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "gitlab-org";
|
|
|
|
repo = "gitlab-pages";
|
|
|
|
rev = "v${version}";
|
2021-12-11 00:32:58 +01:00
|
|
|
sha256 = "sha256-oSimHF4qiI2zcMSx51qxs88AcrrewHIbhaRW8s4Ut7Q=";
|
2020-07-18 17:46:13 +02:00
|
|
|
};
|
|
|
|
|
2021-12-11 00:32:58 +01:00
|
|
|
vendorSha256 = "sha256-dzYO1yAQSVJmDJvjB5XPRBiYCk+ko1n928CTtUXbHBc=";
|
2020-07-18 17:46:13 +02:00
|
|
|
subPackages = [ "." ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Daemon used to serve static websites for GitLab users";
|
|
|
|
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;
|
2021-04-28 17:42:45 +02:00
|
|
|
maintainers = with maintainers; [ ajs124 das_j ];
|
2020-07-18 17:46:13 +02:00
|
|
|
};
|
|
|
|
}
|