biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / version-management / gitlab / gitlab-pages / default.nix
blob3d920be8966d62267e68ce317a6355c842740672
1 { buildGoModule, lib, fetchFromGitLab }:
3 buildGoModule rec {
4   pname = "gitlab-pages";
5   version = "16.10.3";
7   # nixpkgs-update: no auto update
8   src = fetchFromGitLab {
9     owner = "gitlab-org";
10     repo = "gitlab-pages";
11     rev = "v${version}";
12     hash = "sha256-mQNDnxdrM679ejjXZuqSV8SwLXFcKKKGOQt3DJWOZOo=";
13   };
15   vendorHash = "sha256-WrR4eZRAuYkhr7ZqP7OXqJ6uwvxzn+t+3OdBNcNaq0M=";
16   subPackages = [ "." ];
18   meta = with lib; {
19     description = "Daemon used to serve static websites for GitLab users";
20     mainProgram = "gitlab-pages";
21     homepage = "https://gitlab.com/gitlab-org/gitlab-pages";
22     changelog = "https://gitlab.com/gitlab-org/gitlab-pages/-/blob/v${version}/CHANGELOG.md";
23     license = licenses.mit;
24     maintainers = teams.helsinki-systems.members ++ teams.gitlab.members;
25   };