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:
Philip Taron
2025-03-07 12:23:14 -08:00
committed by GitHub
2 changed files with 10 additions and 13 deletions

View File

@@ -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;
})

View File

@@ -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 {