mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
69e6642e49
https://about.gitlab.com/releases/2023/05/02/security-release-gitlab-15-11-1-released/ Fixes CVE-2023-2182 Fixes CVE-2023-1965 Fixes CVE-2023-1621 Fixes CVE-2023-2069 Fixes CVE-2023-1178 Fixes CVE-2023-0805 Fixes CVE-2023-0756 Fixes CVE-2023-1836 Fixes CVE-2022-4376
25 lines
726 B
Nix
25 lines
726 B
Nix
{ buildGoModule, lib, fetchFromGitLab }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gitlab-pages";
|
|
version = "15.11.1";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "gitlab-org";
|
|
repo = "gitlab-pages";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-BPChY2t0ygH73XZYDWDb0EVPqrniMxzg3JWgcmsAesA=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|