2020-07-18 17:46:13 +02:00
|
|
|
{ buildGoModule, lib, fetchFromGitLab }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gitlab-pages";
|
2023-10-31 16:05:00 +01:00
|
|
|
version = "16.5.1";
|
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}";
|
2023-10-31 16:05:00 +01:00
|
|
|
hash = "sha256-1fcsliorkl118MyUnZ3yrQjwLBQGsNBBA4dIEFHBJAI=";
|
2020-07-18 17:46:13 +02:00
|
|
|
};
|
|
|
|
|
2023-10-23 12:46:34 +02:00
|
|
|
vendorHash = "sha256-YG+ERETxp0BPh/V4820pMXTXu9YcodRhzme6qZJBC9Q=";
|
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;
|
2023-05-20 22:25:55 +02:00
|
|
|
maintainers = with maintainers; [ ajs124 das_j ] ++ teams.gitlab.members;
|
2020-07-18 17:46:13 +02:00
|
|
|
};
|
|
|
|
}
|