openssh_hpn/openssh_gssapi: Add CVE-2021-28041
This commit is contained in:
parent
c99c4998fd
commit
2b1011d4a3
2 changed files with 10 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
|||
, src
|
||||
, extraPatches ? []
|
||||
, extraNativeBuildInputs ? []
|
||||
, extraMeta ? {}
|
||||
}:
|
||||
|
||||
{ lib, stdenv
|
||||
|
@ -111,5 +112,5 @@ stdenv.mkDerivation rec {
|
|||
license = licenses.bsd2;
|
||||
platforms = platforms.unix ++ platforms.windows;
|
||||
maintainers = with maintainers; [ eelco aneeshusa ];
|
||||
};
|
||||
} // extraMeta;
|
||||
}
|
||||
|
|
|
@ -33,6 +33,10 @@ in {
|
|||
];
|
||||
|
||||
extraNativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
extraMeta.knownVulnerabilities = [
|
||||
"CVE-2021-28041"
|
||||
];
|
||||
};
|
||||
|
||||
openssh_gssapi = common rec {
|
||||
|
@ -59,5 +63,9 @@ in {
|
|||
];
|
||||
|
||||
extraNativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
extraMeta.knownVulnerabilities = [
|
||||
"CVE-2021-28041"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue