2020-07-18 17:46:13 +02:00
|
|
|
{ buildGoModule, lib, fetchFromGitLab }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gitlab-pages";
|
2021-03-08 13:36:37 +01:00
|
|
|
version = "1.35.0";
|
2020-07-18 17:46:13 +02:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "gitlab-org";
|
|
|
|
repo = "gitlab-pages";
|
|
|
|
rev = "v${version}";
|
2021-03-08 13:36:37 +01:00
|
|
|
sha256 = "sha256-5AkzbOutBXy59XvMwfyH6A8ETwjP2QokG/Rz31/nCpk=";
|
2020-07-18 17:46:13 +02:00
|
|
|
};
|
|
|
|
|
2021-03-08 13:36:37 +01:00
|
|
|
vendorSha256 = "sha256-g8FDWpZmbZSkJAzoEiI8/JZLTTgG7uJ4sS35axaEXLY=";
|
2020-07-18 17:46:13 +02:00
|
|
|
subPackages = [ "." ];
|
|
|
|
doCheck = false; # Broken
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Daemon used to serve static websites for GitLab users";
|
|
|
|
homepage = "https://gitlab.com/gitlab-org/gitlab-pages";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ das_j ];
|
|
|
|
};
|
|
|
|
}
|