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 = meta = {
with lib; description = "Implementation of the SSH protocol${extraDesc}";
{ homepage = "https://www.openssh.com/";
description = "Implementation of the SSH protocol${extraDesc}"; changelog = "https://www.openssh.com/releasenotes.html";
homepage = "https://www.openssh.com/"; license = lib.licenses.bsd2;
changelog = "https://www.openssh.com/releasenotes.html"; platforms = lib.platforms.unix ++ lib.platforms.windows;
license = licenses.bsd2; maintainers = extraMeta.maintainers or [ ];
platforms = platforms.unix ++ platforms.windows; mainProgram = "ssh";
maintainers = (extraMeta.maintainers or [ ]) ++ (with maintainers; [ aneeshusa ]); } // extraMeta;
mainProgram = "ssh";
}
// extraMeta;
}) })

View File

@@ -19,7 +19,7 @@ in
}; };
extraPatches = [ ./ssh-keysign-8.5.patch ]; 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 { openssh_hpn = common rec {