frr: add patch for CVE-2024-27913

This commit is contained in:
Robert Scott 2024-03-10 20:37:58 +00:00
parent 42c7d16b1b
commit 9d59b64009

View File

@ -1,6 +1,7 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
# build time
, autoreconfHook
@ -94,6 +95,15 @@ stdenv.mkDerivation rec {
hash = "sha256-oDPr51vI+tlT1IiUPufmZh/UE0TNKWrn4RqpnGoGxNo=";
};
patches = [
# fixes crash in OSPF TE parsing
(fetchpatch {
name = "CVE-2024-27913.patch";
url = "https://github.com/FRRouting/frr/commit/541503eecd302d2cc8456167d130014cd2cf1134.patch";
hash = "sha256-7NxPlQK/6lbLs/NqNi4OZ2uBWfXw99SiXDR6okNvJlg=";
})
];
nativeBuildInputs = [
autoreconfHook
bison