openssh_gssapi, openssh_hpn: remove self (aneeshusa) from maintainers (#153359)
I (philip.taron@gmail.com) talked to Aneesh at Planet Nix 2025 and we swapped maintainership.
This commit is contained in:
@@ -214,16 +214,13 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
};
|
||||
};
|
||||
|
||||
meta =
|
||||
with lib;
|
||||
{
|
||||
description = "Implementation of the SSH protocol${extraDesc}";
|
||||
homepage = "https://www.openssh.com/";
|
||||
changelog = "https://www.openssh.com/releasenotes.html";
|
||||
license = licenses.bsd2;
|
||||
platforms = platforms.unix ++ platforms.windows;
|
||||
maintainers = (extraMeta.maintainers or [ ]) ++ (with maintainers; [ aneeshusa ]);
|
||||
mainProgram = "ssh";
|
||||
}
|
||||
// extraMeta;
|
||||
meta = {
|
||||
description = "Implementation of the SSH protocol${extraDesc}";
|
||||
homepage = "https://www.openssh.com/";
|
||||
changelog = "https://www.openssh.com/releasenotes.html";
|
||||
license = lib.licenses.bsd2;
|
||||
platforms = lib.platforms.unix ++ lib.platforms.windows;
|
||||
maintainers = extraMeta.maintainers or [ ];
|
||||
mainProgram = "ssh";
|
||||
} // extraMeta;
|
||||
})
|
||||
|
||||
@@ -19,7 +19,7 @@ in
|
||||
};
|
||||
|
||||
extraPatches = [ ./ssh-keysign-8.5.patch ];
|
||||
extraMeta.maintainers = lib.teams.helsinki-systems.members;
|
||||
extraMeta.maintainers = lib.teams.helsinki-systems.members ++ [ lib.maintainers.philiptaron ];
|
||||
};
|
||||
|
||||
openssh_hpn = common rec {
|
||||
|
||||
Reference in New Issue
Block a user