98eb3e9ef5
GitOrigin-RevId: 00d80d13810dbfea8ab4ed1009b09100cca86ba8
26 lines
813 B
Nix
26 lines
813 B
Nix
{ buildGoModule, lib, fetchFromGitLab }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gitlab-pages";
|
|
version = "16.11.5";
|
|
|
|
# nixpkgs-update: no auto update
|
|
src = fetchFromGitLab {
|
|
owner = "gitlab-org";
|
|
repo = "gitlab-pages";
|
|
rev = "v${version}";
|
|
hash = "sha256-mJKzaFICE7f4aIFGeV/4PbbQkaxwmRd9QO2pRXpM2ag=";
|
|
};
|
|
|
|
vendorHash = "sha256-WrR4eZRAuYkhr7ZqP7OXqJ6uwvxzn+t+3OdBNcNaq0M=";
|
|
subPackages = [ "." ];
|
|
|
|
meta = with lib; {
|
|
description = "Daemon used to serve static websites for GitLab users";
|
|
mainProgram = "gitlab-pages";
|
|
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 = teams.helsinki-systems.members ++ teams.gitlab.members;
|
|
};
|
|
}
|