mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-26 23:03:41 +00:00
2e34796524
https://gitlab.com/gitlab-org/gitlab/-/blob/v17.2.5-ee/CHANGELOG.md Fixes CVE-2024-2743 Fixes CVE-2024-4283 Fixes CVE-2024-4472 Fixes CVE-2024-4612 Fixes CVE-2024-4660 Fixes CVE-2024-5435 Fixes CVE-2024-6389 Fixes CVE-2024-6446 Fixes CVE-2024-6685 Fixes CVE-2024-8124 Fixes CVE-2024-8311 Fixes CVE-2024-8631 Fixes CVE-2024-8635 Fixes CVE-2024-8640 Fixes CVE-2024-8641
27 lines
812 B
Nix
27 lines
812 B
Nix
{ buildGoModule, lib, fetchFromGitLab }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gitlab-pages";
|
|
version = "17.2.5";
|
|
|
|
# nixpkgs-update: no auto update
|
|
src = fetchFromGitLab {
|
|
owner = "gitlab-org";
|
|
repo = "gitlab-pages";
|
|
rev = "v${version}";
|
|
hash = "sha256-5qksHuY7EzCoCMBxF4souvUz8xFstfzOZT3CF5YsV7M=";
|
|
};
|
|
|
|
vendorHash = "sha256-yNHeM8MExcLwv2Ga4vtBmPFBt/Rj7Gd4QQYDlnAIo+c=";
|
|
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;
|
|
};
|
|
}
|