Merge pull request #221511 from helsinki-systems/upd/openssh

openssh: 9.2p1 -> 9.3p1
This commit is contained in:
Martin Weinelt 2023-03-31 13:54:40 +02:00 committed by GitHub
commit 62d5fcc12c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,11 +6,11 @@ in
openssh = common rec {
pname = "openssh";
version = "9.2p1";
version = "9.3p1";
src = fetchurl {
url = "mirror://openbsd/OpenSSH/portable/openssh-${version}.tar.gz";
hash = "sha256-P2bb8WVftF9Q4cVtpiqwEhjCKIB7ITONY068351xz0Y=";
hash = "sha256-6bq6dwGnalHz2Fpiw4OjydzZf6kAuFm8fbEUwYaK+Kg=";
};
extraPatches = [ ./ssh-keysign-8.5.patch ];
@ -51,7 +51,10 @@ in
extraNativeBuildInputs = [ autoreconfHook ];
extraConfigureFlags = [ "--with-hpn" ];
extraMeta.maintainers = with lib.maintainers; [ abbe ];
extraMeta = {
maintainers = with lib.maintainers; [ abbe ];
knownVulnerabilities = [ "CVE-2023-28531" ];
};
};
openssh_gssapi = common rec {
@ -75,5 +78,6 @@ in
];
extraNativeBuildInputs = [ autoreconfHook ];
extraMeta.knownVulnerabilities = [ "CVE-2023-28531" ];
};
}