eaf6957cd3
GitOrigin-RevId: 4bb072f0a8b267613c127684e099a70e1f6ff106
24 lines
726 B
Nix
24 lines
726 B
Nix
{ buildGoModule, lib, fetchFromGitLab }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gitlab-pages";
|
|
version = "15.10.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "gitlab-org";
|
|
repo = "gitlab-pages";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-LTUGWnZCqyLA5kNlCWMVGIOivfWVGb6GcAdO2tNW1/o=";
|
|
};
|
|
|
|
vendorHash = "sha256-s3HHoz9URACuVVhePQQFviTqlQU7vCLOjTJPBlus1Vo=";
|
|
subPackages = [ "." ];
|
|
|
|
meta = with lib; {
|
|
description = "Daemon used to serve static websites for GitLab users";
|
|
homepage = "https://gitlab.com/gitlab-org/gitlab-pages";
|
|
changelog = "https://gitlab.com/gitlab-org/gitlab-pages/-/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ajs124 das_j ];
|
|
};
|
|
}
|