openssh_*: Add knownVulnerabilities

This commit is contained in:
Janne Heß 2023-03-21 09:22:28 +01:00
parent b73979f09b
commit 53d9b6db12
No known key found for this signature in database

View file

@ -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" ];
};
}