forked from mirrors/nixpkgs
Merge pull request #233091 from yayayayaka/add-team-gitlab
maintainers/team-list: Add team gitlab
This commit is contained in:
commit
764472b473
|
@ -307,6 +307,18 @@ with lib.maintainers; {
|
|||
shortName = "Geospatial";
|
||||
};
|
||||
|
||||
gitlab = {
|
||||
members = [
|
||||
globin
|
||||
krav
|
||||
talyz
|
||||
yayayayaka
|
||||
yuka
|
||||
];
|
||||
scope = "Maintain gitlab packages.";
|
||||
shortName = "gitlab";
|
||||
};
|
||||
|
||||
golang = {
|
||||
members = [
|
||||
kalbasit
|
||||
|
|
|
@ -611,4 +611,6 @@ in {
|
|||
(mkRenamedOptionModule [ "services" "gitlab-runner" "sessionServer" "advertiseAddress" ] [ "services" "gitlab-runner" "settings" "session_server" "advertise_address" ] )
|
||||
(mkRenamedOptionModule [ "services" "gitlab-runner" "sessionServer" "sessionTimeout" ] [ "services" "gitlab-runner" "settings" "session_server" "session_timeout" ] )
|
||||
];
|
||||
|
||||
meta.maintainers = teams.gitlab.members;
|
||||
}
|
||||
|
|
|
@ -1685,5 +1685,5 @@ in {
|
|||
};
|
||||
|
||||
meta.doc = ./gitlab.md;
|
||||
|
||||
meta.maintainers = teams.gitlab.members;
|
||||
}
|
||||
|
|
|
@ -211,7 +211,7 @@ stdenv.mkDerivation {
|
|||
meta = with lib; {
|
||||
homepage = "http://www.gitlab.com/";
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ globin krav talyz yayayayaka yuka ];
|
||||
maintainers = teams.gitlab.members;
|
||||
} // (if gitlabEnterprise then
|
||||
{
|
||||
license = licenses.unfreeRedistributable; # https://gitlab.com/gitlab-org/gitlab-ee/raw/master/LICENSE
|
||||
|
|
|
@ -61,7 +61,7 @@ buildGoModule ({
|
|||
homepage = "https://gitlab.com/gitlab-org/gitaly";
|
||||
description = "A Git RPC service for handling all the git calls made by GitLab";
|
||||
platforms = platforms.linux ++ [ "x86_64-darwin" ];
|
||||
maintainers = with maintainers; [ roblabla globin talyz yayayayaka ];
|
||||
maintainers = teams.gitlab.members;
|
||||
license = licenses.mit;
|
||||
};
|
||||
} // commonOpts)
|
||||
|
|
|
@ -19,6 +19,6 @@ buildGoModule rec {
|
|||
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 ];
|
||||
maintainers = with maintainers; [ ajs124 das_j ] ++ teams.gitlab.members;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -26,7 +26,7 @@ buildGoModule rec {
|
|||
description = "SSH access and repository management app for GitLab";
|
||||
homepage = "http://www.gitlab.com/";
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ globin talyz yayayayaka ];
|
||||
maintainers = teams.gitlab.members;
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -24,7 +24,7 @@ buildGoModule rec {
|
|||
meta = with lib; {
|
||||
homepage = "http://www.gitlab.com/";
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ globin talyz yayayayaka ];
|
||||
maintainers = teams.gitlab.members;
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -69,6 +69,6 @@ buildGoModule rec {
|
|||
license = licenses.mit;
|
||||
homepage = "https://about.gitlab.com/gitlab-ci/";
|
||||
platforms = platforms.unix ++ platforms.darwin;
|
||||
maintainers = with maintainers; [ bachp zimbatm globin yayayayaka ];
|
||||
maintainers = with maintainers; [ bachp zimbatm globin ] ++ teams.gitlab.members;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue