openssh: add version check

Check the version of both ssh and sshd in an installCheckPhase.
Seems prudent given recent version shenanigans upstream:

https://www.openwall.com/lists/oss-security/2025/04/09/6

+7
+7
pkgs/tools/networking/openssh/common.nix
··· 202 202 "sysconfdir=\${out}/etc/ssh" 203 203 ]; 204 204 205 + doInstallCheck = true; 206 + installCheckPhase = '' 207 + for binary in ssh sshd; do 208 + $out/bin/$binary -V 2>&1 | grep -P "$(printf '^OpenSSH_\\Q%s\\E,' "$version")" 209 + done 210 + ''; 211 + 205 212 passthru = { 206 213 inherit withKerberos; 207 214 tests = {